# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
405722 | 2021-05-16T20:45:51 Z | Victor | 질문 (CEOI14_question_grader) | C++17 | 2 ms | 400 KB |
#define rep(i, a, b) for (int i = a; i < (b); ++i) int encode(int n, int x, int y) { rep(i, 0, 12) if (x & 1 << i && !(y & 1 << i)) return i + 1; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 400 KB | the encoded value must be greater than or equal to 1 |
2 | Incorrect | 2 ms | 400 KB | the encoded value must be greater than or equal to 1 |