# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
564838 | 2022-05-19T18:59:17 Z | Uzouf | 질문 (CEOI14_question_grader) | C++14 | 0 ms | 416 KB |
int encode(int n,int x,int y) { int a=x,b=y; for (int p=10;p>=0;p--) { int i=0,j=0; if ((1<<p)<=a) { a-=(1<<p); i=1; } if ((1<<p)<=b) { b-=(1<<p); j=1; } if (i>j) return p; } a=__builtin_popcount(x); b=__builtin_popcount(y); for (int p=5;p>=0;p--) { int i=0,j=0; if ((1<<p)<=a) { a-=(1<<p); i=1; } if ((1<<p)<=b) { b-=(1<<p); j=1; } if (i<j) return p+10; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 416 KB | the encoded value must be greater than or equal to 1 |
2 | Incorrect | 0 ms | 416 KB | the encoded value must be greater than or equal to 1 |