Submission #35077

# Submission time Handle Problem Language Result Execution time Memory
35077 2017-11-18T01:11:36 Z imaxblue Question (Grader is different from the original contest) (CEOI14_question_grader) C++14
0 / 100
1193 ms 25664 KB
int encode(int N, int X, int Y){
  return (((X^Y)&-(X^Y)) << 1)+(X>Y);
}
int decode(int N, int Q, int H){
  return (H&1)?((Q&(H/2))>0):((Q&(H/2))==0);
}
# Verdict Execution time Memory Grader output
1 Incorrect 1153 ms 25664 KB wrong answer
2 Incorrect 1193 ms 25664 KB wrong answer