제출 #35077

#제출 시각아이디문제언어결과실행 시간메모리
35077imaxblueQuestion (Grader is different from the original contest) (CEOI14_question_grader)C++14
0 / 100
1193 ms25664 KiB
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 timeMemoryGrader output
Fetching results...