# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
43906 | 2018-03-27T12:12:05 Z | dhkim0225 | cmp (balkan11_cmp) | C++14 | 1 ms | 248 KB |
#include "cmp.h" void remember(int n) { bit_set(n); } int compare(int b) { int res = -1; for (int i = 0; i <= b; i++) { if (bit_get(i) == 1) { if (b == i) res = 0; if (b!=i) res = 1; break; } } return res; }
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 248 KB | ZERO POINTS: bit_set with addr out of range 0 |