# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
19530 | jihoon | Α (kriii4_P1) | C++98 | 0 ms | 0 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<cstdio>
long long a,x,ans,gop;
int main(){
scanf("%lld\n%lld",&a,&x);
gop=x; ans=1;
while(x){
if(x&1){ans*=gop;ans%=je;}
x >>= 1;gop*=gop;gop%=je;
}
printf("%lld",ans);
}