#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";
}
# |
결과 |
실행 시간 |
메모리 |
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 |