# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1038672 | vjudge1 | Pot (COCI15_pot) | C++17 | 1 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<iostream>
using namespace std;
int main()
{
int x = 0;
int n;
cin >> n;
for(int i = 0; i < n; i ++)
{
int t;
cin >> t;
int num = 1, p = t % 10;
while(p--) num *= t / 10;
x += num;
}
cout << x << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |