# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
836869 | 2023-08-24T16:29:59 Z | Andrey | 질문 (CEOI14_question_grader) | C++14 | 2378 ms | 24108 KB |
#include<bits/stdc++.h> using namespace std; int encode (int n, int x, int y) { for(int i = 0; i < 10; i++) { if((x&(1 << i)) != (y&(1 << i))) { int ans = i+1; if(x&(1 << i)) { ans+=10; } return ans; } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 2360 ms | 24108 KB | Output is partially correct - maxh = 20 |
2 | Partially correct | 2378 ms | 24100 KB | Output is partially correct - maxh = 20 |