# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4219 | 2013-09-05T14:08:04 Z | dbfud | Great Pow! (kriii1_G) | C++ | 0 ms | 1668 KB |
#include <iostream> using namespace std; int main() { int M, N = 0; cin >> M >> N ; if ( N == 0 ) { cout << M; return 0; } if ( M % 2 == 0 ) cout << 1 ; else if ( N == 0 ) cout << M ; return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1668 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |