# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
19686 | 2016-02-25T04:33:10 Z | onjo0127 | 괄호 (kriii4_R) | C++ | 1 ms | 4988 KB |
#include <stdio.h> int dp[1000009]; int main() { int n,k,i; scanf("%d %d",&n,&k); if(n==1) { printf("1"); return 0; } if(n%2) { printf("2"); return 0; } dp[0] = 1; dp[1] = 1; for(i=2;i<=n;i+=2) { dp[i] = dp[i-2] + 1; } printf("%d",dp[n]); return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 4988 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Halted | 0 ms | 0 KB | - |