# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
713805 | Dulguun88 | Pot (COCI15_pot) | C++14 | 1 ms | 212 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<bits/stdc++.h>
using namespace std;
int main(){
int n, t, e;
long long int a=0;
cin>>n;
for(int i=0;i<n;i++){
cin>>t;
e=t%10;
t/=10;
a+=pow(t,e);
}
cout<<a;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |