# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
35080 | 2017-11-18T01:22:37 Z | imaxblue | 질문 (CEOI14_question_grader) | C++14 | 0 ms | 25664 KB |
int log(int X){int C=0; while(X>1){C++; X>>=1;} return C;} int encode(int N, int X, int Y){ return (log((X^Y)&-(X^Y)) << 1)+((X&(((X^Y)&-(X^Y))))>0); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 25664 KB | Output isn't correct |
2 | Incorrect | 0 ms | 25664 KB | Output isn't correct |