# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
95500 | 2019-02-01T16:18:15 Z | popovicirobert | 질문 (CEOI14_question_grader) | C++14 | 1315 ms | 124600 KB |
int encode (int N, int x, int y) { for(int bit = 0; bit < 10; bit++) { if((x & (1 << bit)) != (y & (1 << bit))) { return bit * 2 + ((x & (1 << bit)) > 0) + 1; } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 1315 ms | 124312 KB | Output is partially correct - maxh = 20 |
2 | Partially correct | 1287 ms | 124600 KB | Output is partially correct - maxh = 20 |