赞
踩
题目:
题解:
- 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
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。