# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
625918 | 2022-08-11T02:11:46 Z | palilo | 질문 (CEOI14_question_grader) | C++17 | 4393 ms | 24260 KB |
auto encode(int n, int x, int y) -> int { const auto z = x ^ y; for (int i = 0;; ++i) { if (z >> i & 1) { return (i << 1 | (y >> i & 1)) + 1; } } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 4379 ms | 24260 KB | Output is partially correct - maxh = 20 |
2 | Partially correct | 4393 ms | 24032 KB | Output is partially correct - maxh = 20 |