# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
100940 | square1001 | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 1591 ms | 126208 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) {
for (int i = 0; i < 10; ++i) {
int b1 = ((x >> i) & 1);
int b2 = ((y >> i) & 1);
if (b1 != b2) return (b1 == 0 ? i : 10 + i) + 1;
}
return -1;
}
int decode(int n, int q, int h) {
--h;
if (h < 10) return ((q >> h) & 1 ? 0 : 1);
return ((q >> (h - 10)) & 1 ? 1 : 0);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |