You are viewing a single comment's thread. Return to all comments →
def atoNmodp(arra,N,p): if N==1: return arra if N&1: newa = atoNmodp(arra,N-1,p) return list(map(lambda x,y: x*y%p, newa, arra)) else: newa = atoNmodp(arra,N>>1,p) return list(map(lambda x: x*x%p, newa)) def solve(k, n): allMod = atoNmodp(range(1,100),n,100) resMod =0 res100 =0 kmod100 =k%100 for i, num in enumerate(allMod): res100 = res100 + num %100 if i+1==kmod100: resMod =res100 ret = str(((k//100%100) *res100 + resMod) %100) if len(ret) ==1: ret='0'+ret return ret
Seems like cookies are disabled on this browser, please enable them to open this website
Power Calculation
You are viewing a single comment's thread. Return to all comments →