# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
41550 | 2018-02-18T19:08:35 Z | farmersrice | 질문 (CEOI14_question_grader) | C++14 | 3 ms | 1004 KB |
int encode(int n, int x, int y) { int xy = x ^ y; int lsb = xy & (-xy); int count = 0; while (lsb > 1) { lsb /= 2; count++; } return 2 * count - ((x ^ (1 << count)) ? 1 : 0); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 628 KB | Output isn't correct |
2 | Incorrect | 3 ms | 1004 KB | Output isn't correct |