# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
36419 | 2017-12-08T18:52:26 Z | bnahmad15 | 질문 (CEOI14_question_grader) | C++14 | 1309 ms | 27472 KB |
#include <bits/stdc++.h> int encode(int n,int x,int y){ int bit = 0; for (int i= 0;i<10;i++){ if ((x&(1<<i)) != (y&(1<<i))){ bit = i; if ((x & (1<<i)) == 1) bit+=10; break; } } return bit+1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1309 ms | 27472 KB | wrong answer |
2 | Incorrect | 1219 ms | 27472 KB | wrong answer |