def calculate(self, a, b, c): if b == 0:return 1 ans = 1 while b > 0: if b & 1 : ans = ans * a % c a = a * a % c b >>= 1 return ans
至尊宝的传说
相关分类