# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
36415 | 2017-12-08T18:36:26 Z | bnahmad15 | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> int encode(int n,int x,int y){ int bit = 0; for (int i= 0;i<10;i++){ if ((x&(1<<i)) != (y&(1<<i))){ bit = i; if ((x & (1<<i)) == 1) bit+=10; break; } } return bit+1; }