Submission #1038673

#TimeUsernameProblemLanguageResultExecution timeMemory
1038673vjudge1Pot (COCI15_pot)C++17
50 / 50
0 ms348 KiB
#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    cin >> n;
    int ans = 0;
    for (int i = 0; i < n; i ++){
        string s;
        cin >> s;

        int x = 0, p = s.back() - '0';
        s.pop_back();
        for (char c : s)
            x = x * 10 + c - '0';
        int pw = 1;
        for (int i = 0; i < p; i ++)
            pw *= x;
        ans += pw;
    }

    cout << ans << endl;
}
#Verdict Execution timeMemoryGrader output
Fetching results...