# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
282088 | thtsshz_bgwrswh | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++17 | 4577 ms | 47992 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
int encode(int n,int x,int y){
int i;
for(i=0;;i++)
if((x>>i&1)!=(y>>i&1))
return i+1+10*(x>>i&1);
}
int decode(int n,int q,int h){
if(h>10){
h-=10;
return q>>(h-1)&1;
}
return !(q>>(h-1)&1);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |