forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_372.java
49 lines (40 loc) · 1 KB
/
_372.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.fishercoder.solutions;
/**
* Your task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.
Example1:
a = 2
b = [3]
Result: 8
Example2:
a = 2
b = [1,0]
Result: 1024
*/
public class _372 {
/**Reference: https://discuss.leetcode.com/topic/50586/math-solusion-based-on-euler-s-theorem-power-called-only-once-c-java-1-line-python*/
public int superPow(int a, int[] b) {
if (a % 1337 == 0) {
return 0;
}
int p = 0;
for (int i : b) {
p = (p * 10 + i) % 1140;
}
if (p == 0) {
p += 1140;
}
return power(a, p, 1337);
}
private int power(int a, int n, int mod) {
a %= mod;
int result = 1;
while (n != 0) {
if ((n & 1) != 0) {
result = result * a % mod;
}
a = a * a % mod;
n >>= 1;
}
return result;
}
}