Submission #625916

# Submission time Handle Problem Language Result Execution time Memory
625916 2022-08-11T02:09:37 Z palilo Question (Grader is different from the original contest) (CEOI14_question_grader) C++17
0 / 100
4098 ms 24220 KB
auto encode(int n, int x, int y) -> int {
    const auto z = x ^ y;
    for (int i = 0;; ++i) {
        if (z >> i & 1) {
            return (i + 1) << 1 | (y >> i & 1);
        }
    }
}
auto decode(int n, int q, int h) -> int {
    return ((q >> ((h >> 1) - 1)) ^ h) & 1;
}
# Verdict Execution time Memory Grader output
1 Partially correct 4098 ms 24096 KB Output is partially correct - maxh = 21
2 Partially correct 3873 ms 24220 KB Output is partially correct - maxh = 21