Submission #564435

#TimeUsernameProblemLanguageResultExecution timeMemory
564435Abdulmohsen1284Question (Grader is different from the original contest) (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...