# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
19840 |
2016-02-25T06:10:39 Z |
qataro |
동전 (kriii4_E) |
C++ |
|
0 ms |
1576 KB |
#include <cstdio>
#include <vector>
using namespace std;
int main()
{
int n;
scanf("%d", &n);
vector<long long> winCnt(n + 2);
winCnt[1] = 1;
winCnt[2] = 1;
for(int idx = 3; idx <= n; idx++)
winCnt[idx] = winCnt[idx -1] * 2;
printf("%lld", winCnt[n]);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1576 KB |
Output is correct |
2 |
Correct |
0 ms |
1576 KB |
Output is correct |
3 |
Correct |
0 ms |
1576 KB |
Output is correct |
4 |
Correct |
0 ms |
1576 KB |
Output is correct |
5 |
Correct |
0 ms |
1576 KB |
Output is correct |
6 |
Incorrect |
0 ms |
1576 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |