# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
189095 | 2020-01-13T17:05:34 Z | TadijaSebez | 질문 (CEOI14_question_grader) | C++11 | 4 ms | 988 KB |
int encode (int n, int x, int y) { for(int step=1;step<=10;step++) { int a=0,b=0; for(int i=0;i<10;i+=step) { a^=x>>i&1; b^=y>>i&1; } if(a!=b) return (step-1)*2+a; } return -1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 776 KB | Output isn't correct |
2 | Incorrect | 4 ms | 988 KB | Output isn't correct |