# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
347041 | 2021-01-11T15:24:57 Z | ACmachine | 질문 (CEOI14_question_grader) | C++17 | 0 ms | 0 KB |
int encode (int n, int x, int y) { int res; if(x > y){ REP(j, 12){ if((x & (1 << j))&&!(y & (1 << j))){ res = j; break; } } } else{ REP(j, 12){ if(!(x & (1 << j)) && (y & (1 << j))){ res = j; break; } } } return res; }