| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1038673 | vjudge1 | Pot (COCI15_pot) | C++17 | 0 ms | 348 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;
    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 time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
