# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
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; }
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1668 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |