# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
19345 | shjgkwo | Α (kriii4_P1) | C++98 | 0 ms | 1084 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#define MOD 1000000007
int main() {
long long n, m;
bool o[66];
int e = 0;
scanf("%lld", &n);
scanf("%lld", &m);
while (m > 0) {
o[e++] = m & 1;
m >>= 1;
}
n %= MOD;
long long ans = 1;
while (e--) {
ans *= ans;
ans %= MOD;
if (o[e]) {
ans *= n;
ans %= MOD;
}
}
printf("%lld", ans);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |