# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100940 | 2019-03-15T10:50:34 Z | square1001 | 질문 (CEOI14_question_grader) | C++14 | 1591 ms | 126208 KB |
int encode(int n, int x, int y) { for (int i = 0; i < 10; ++i) { int b1 = ((x >> i) & 1); int b2 = ((y >> i) & 1); if (b1 != b2) return (b1 == 0 ? i : 10 + i) + 1; } return -1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 1591 ms | 126048 KB | Output is partially correct - maxh = 20 |
2 | Partially correct | 1453 ms | 126208 KB | Output is partially correct - maxh = 20 |