# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
565343 | 2022-05-20T17:47:45 Z | Rifal | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include <fstream> #define endl '\n' #define mod 32768 #define INF 100000000000000 //#define ll long long //#define cin fin //#define cout fout using namespace std; //ofstream fout("convention.out"); //ifstream fin("convention.in"); int encode (int n, int x, int y) { return (x + y) % 2; } int main() { ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0); return 0; }