# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
343686 | 2021-01-04T11:37:30 Z | juggernaut | 질문 (CEOI14_question_grader) | C++14 | 3805 ms | 24384 KB |
static int arr[924],pos; int encode (int n, int x, int y){ if(!pos){ int a,b; for(int i=0;i<4096;i++){ a=i;b=0; while(a>=1){ b+=(a%2); a/=2; } if(b==6) arr[pos++]=i; } } x=arr[x-1];y=arr[y-1]; for(int i=0;i<12;i++) if(x>>i&1 && !(y>>i&1)) return i+1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3805 ms | 24384 KB | Output is correct - maxh = 12 |
2 | Correct | 3756 ms | 24220 KB | Output is correct - maxh = 12 |