题目:

题解:
const mod = 1337
func pow(x, n int) int {
res := 1
for ; n > 0; n /= 2 {
if n&1 > 0 {
res = res * x % mod
}
x = x * x % mod
}
return res
}
func superPow(a int, b []int) int {
ans := 1
for _, e := range b {
ans = pow(ans, 10) * pow(a, e) % mod
}
return ans
}



![[数据集][目标检测]电力场景输电线防震锤检测数据集VOC+YOLO格式2721张2类别](https://i-blog.csdnimg.cn/direct/bb555640fe714d93a133bcd0691ba618.png)







![[Algorithm][综合训练][mari和shiny][重排字符串]详细讲解](https://i-blog.csdnimg.cn/direct/60cd7ee1af62427d9021ebc1d38830c9.png)
![[项目]-通讯录的实现](https://i-blog.csdnimg.cn/direct/c9ef44cc6aa2417d9f8be57bfd73e5cd.png)






