(ab)%c = [(a%c)(b%c)]%c
以下为证明
a % c = d --> a = tc + d
b % c = e --> b = kc + e
(ab) % c = (tc + d)(kc + e) % c
= (tkc^2+(te+dk)c+de)%c
= (de) % c = [(a%c)*(b%c)]%c
再来看代码
defquick_algorithm(a,b,c):
a=a%c
ans=1while b!=0:if b&1:
ans=(ans*a)%c
b>>=1
a=(a*a)%c
return ans
T =int(input())
lst =[]for i inrange(T):
a,b =list(map(int,input().split()))
lst.append(quick_algorithm(a,b,pow(10,9)+7))for i in lst:print(i)
最后解释一下b>>=n,相当于把b除以2的n次方,并向下取整。