# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
252828 | 2020-07-26T10:25:56 Z | verngutz | 질문 (CEOI14_question_grader) | C++17 | 0 ms | 768 KB |
int encode(int n, int x, int y) { int least_differing_bit; for(int i = 0; i < 10; i++) { if((x & (1 << i)) ^ (y & (1 << i))) { least_differing_bit = i; break; } } int x0 = (x & (1 << least_differing_bit)) == 0; if(least_differing_bit < 8) { return least_differing_bit | (x0 << 3); } else { return (least_differing_bit << 1) | x0; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 768 KB | the encoded value must be greater than or equal to 1 |
2 | Incorrect | 0 ms | 640 KB | the encoded value must be greater than or equal to 1 |