Submission #567209

# Submission time Handle Problem Language Result Execution time Memory
567209 2022-05-23T09:23:00 Z 600Mihnea Question (Grader is different from the original contest) (CEOI14_question_grader) C++17
0 / 100
3147 ms 24288 KB
int encode (int n, int x, int y) {
  return x;
}
int decode (int n, int q, int h) {
  if (q == h) {
    return 1;
  } else {
    return 0;
  }
}
# Verdict Execution time Memory Grader output
1 Incorrect 3140 ms 24028 KB Output isn't correct - maxh = 920
2 Incorrect 3147 ms 24288 KB Output isn't correct - maxh = 920