# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
126764 | 2019-07-08T11:26:41 Z | Osama_Alkhodairy | 질문 (CEOI14_question_grader) | C++17 | 4 ms | 884 KB |
int encode (int n, int x, int y) { int h = 0; while(((x >> h) & 1) == ((y >> h) & 1)) h++; if((x >> h) & 1) h += 10; return h; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 784 KB | Output isn't correct |
2 | Incorrect | 4 ms | 884 KB | Output isn't correct |