제출 #564418

#제출 시각아이디문제언어결과실행 시간메모리
564418marsQuestion (Grader is different from the original contest) (CEOI14_question_grader)C++14
0 / 100
0 ms500 KiB
int encode (int n, int x, int y) {
  return (x + y) % 2;
}
int decode (int n, int q, int h) {
	return (q + h) % 2;
}
#Verdict Execution timeMemoryGrader output
Fetching results...