제출 #564435

#제출 시각아이디문제언어결과실행 시간메모리
564435Abdulmohsen1284질문 (CEOI14_question_grader)C++14
0 / 100
3336 ms24152 KiB
#include"bits/stdc++.h"
using namespace std;
int encode (int n, int x, int y) {
  return x;
}
#include"bits/stdc++.h"
using namespace std;
int decode (int n, int q, int h) {
	if(q==h)
		return 1;
	else
		return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...