Submission #564968

#TimeUsernameProblemLanguageResultExecution timeMemory
564968shrimbQuestion (Grader is different from the original contest) (CEOI14_question_grader)C++17
0 / 100
0 ms420 KiB
#include"bits/stdc++.h" using namespace std; int init = 0; int g[942]; void __init__ () { for (int i = 0, j = 0 ; ; i++) { if (__builtin_popcount(i) == 6) { g[j++] = i; if (j == 942) break; } } } int encode (int n, int x, int y) { if (!init) { __init__(); } for (int i = 0 ; i < 12 ; i++) { if (g[x] & (1 << i) and !(g[y] & (1 << i))) return i; } }
#include"bits/stdc++.h" using namespace std; int init = 0; int g[942]; void __init__ () { for (int i = 0, j = 0 ; ; i++) { if (__builtin_popcount(i) == 6) { g[j++] = i; if (j == 942) break; } } } int decode (int n, int q, int h) { if (!init) { __init__(); } return bool(g[q] & (1 << h)); }

Compilation message (stderr)

encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:21:1: warning: control reaches end of non-void function [-Wreturn-type]
   21 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...