# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
19373 | camille | Α (kriii4_P1) | C++98 | 298 ms | 1716 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 <iostream>
using namespace std;
typedef long long lld;
lld a,x,mod=1e9+7;
lld foo(lld idx){
cout<<idx<<endl;
if(idx==1) return a;
if(idx%2) return foo(idx/2)*foo(idx/2)*a%mod;
return foo(idx/2)*foo(idx/2)%mod;
}
int main(){
cin>>a>>x;
a%=mod;
cout<<foo(x)<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |