# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
387728 | 2021-04-09T06:33:32 Z | Nima_Naderi | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 2165 ms | 24396 KB |
#include <bits/stdc++.h> using namespace std; int encode (int n, int x, int y) { int h = 0, xr = x ^ y; for(int i = 0; i < 10; i ++){ if((xr >> i) & 1LL){ h = i * 2 + (x & 1LL); h ++; return h; } } return -1; }
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2165 ms | 24396 KB | wrong answer |
2 | Incorrect | 2126 ms | 24060 KB | wrong answer |