# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
26797 | 2017-07-06T04:41:03 Z | baactree | 질문 (CEOI14_question_grader) | C++14 | 0 ms | 25672 KB |
int encode (int n, int x, int y) { for(int i=0;i<10;i++){ int a=x&1; int b=y&1; if(a!=b){ return i*2+a; } x/=2; y/=2; } return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 25672 KB | Output isn't correct |
2 | Incorrect | 0 ms | 25672 KB | Output isn't correct |