Submission #292458

#TimeUsernameProblemLanguageResultExecution timeMemory
2924587_7_7Pot (COCI15_pot)C++17
50 / 50
1 ms384 KiB
#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 timeMemoryGrader output
Fetching results...