# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
28471 | not good but never sad (#68) | LR Springboard (FXCUP2_springboard) | C++98 | 0 ms | 1128 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 |
---|---|---|---|---|
Fetching results... |