# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
28471 | 2017-07-16T06:19:39 Z | not good but never sad(#1132, kriii) | LR Springboard (FXCUP2_springboard) | C++ | 0 ms | 1128 KB |
#include "springboard.h" void Reorder(int N) { int l = 1, r = N; while (l <= r){ int m = (l + r) / 2; if (PutBall(m) == -1) l = m + 1; else r = m - 1; } }
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1128 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |