# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
565177 | 2022-05-20T12:00:11 Z | Dodo | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> #define ll long long #define endl '\n' #define pb push_back using namespace std; int encode (int n, int x, int y) { int h; for(int i=0;i<=9;i++) { bool f,s; if((x&(1<<i)))f=1; else f=0; if((y&(1<<i)))s=1; else s=0; if(x==1&&y==0) return i; if(x==0&&y==1)h=i; } return (10+h) }