题目:
题解:
Go
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
}