# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
140953 | 2019-08-06T07:35:19 Z | yys11631 | 질문 (CEOI14_question_grader) | C++17 | 1129 ms | 126960 KB |
int encode(int n, int x, int y) { int a[5], b[5]; for (int i = 0; i < 5; i++) { a[i] = x % 4; x /= 4; } for (int i = 0; i < 5; i++) { b[i] = y % 4; y /= 4; } for (int i = 0; i < 5; i++) { if (a[i] != b[i]) { return i + a[i]*5+1; } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1085 ms | 126784 KB | wrong answer |
2 | Incorrect | 1129 ms | 126960 KB | wrong answer |