# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
7098 | 2014-07-23T14:44:43 Z | tncks0121 | 질문 (CEOI14_question_grader) | C | 1622 ms | 25676 KB |
int encode (int n, int x, int y) { int k; for(k = 0; k <= 9; k++) { if(((x >> k) ^ (y >> k)) & 1) { int t = (x >> k) & 1; return k * 2 + t + 1; } } return -1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 1612 ms | 25676 KB | Output is partially correct - maxh = 20 |
2 | Partially correct | 1622 ms | 25676 KB | Output is partially correct - maxh = 20 |