Submission #11125

#TimeUsernameProblemLanguageResultExecution timeMemory
11125gs14004Question (Grader is different from the original contest) (CEOI14_question_grader)C++98
0 / 100
1705 ms25672 KiB
int encode (int n, int x, int y) {
    return x;
}
int decode (int n, int q, int h) {
    if(h == q) return 1;
    else return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...