# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
292458 |
2020-09-07T04:26:15 Z |
7_7_7 |
Pot (COCI15_pot) |
C++17 |
|
1 ms |
384 KB |
#include <bits/stdc++.h>
using namespace std;
long long pw(long long a, long long n){
long long res = 1;
while(n > 0){
if(n & 1){
res = (res * a);
}
a = (a * a);
n >>= 1;
}
return res;
}
int main()
{
ios_base::sync_with_stdio(false);
int n;
cin >> n;
long long res = 0;
for(int i = 1; i <= n; i ++){
long long x;
cin >> x;
res += pw(x / 10, x % 10);
}
cout << res << "\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
0 ms |
384 KB |
Output is correct |
4 |
Correct |
0 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
384 KB |
Output is correct |
6 |
Correct |
0 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
384 KB |
Output is correct |
8 |
Correct |
1 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
384 KB |
Output is correct |
10 |
Correct |
0 ms |
384 KB |
Output is correct |