# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
339952 | 2020-12-26T12:11:32 Z | AlperenT | Pot (COCI15_pot) | C++17 | 1 ms | 492 KB |
#include <bits/stdc++.h> using namespace std; long long n, a, ans; long long fastpow(long long a, long long b){ if(b == 0) return 1; if(b % 2 == 0){ long long temp = fastpow(a, b / 2); return temp * temp; } else{ long long temp = fastpow(a, (b - 1) / 2); return temp * temp * a; } } int main(){ scanf("%lld", &n); while(n--){ scanf("%lld", &a); ans += fastpow(a / 10, a % 10); } printf("%lld", ans); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 1 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 492 KB | Output is correct |
4 | Correct | 1 ms | 364 KB | Output is correct |
5 | Correct | 1 ms | 364 KB | Output is correct |
6 | Correct | 1 ms | 364 KB | Output is correct |
7 | Correct | 1 ms | 364 KB | Output is correct |
8 | Correct | 1 ms | 492 KB | Output is correct |
9 | Correct | 1 ms | 364 KB | Output is correct |
10 | Correct | 1 ms | 364 KB | Output is correct |