# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
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; } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1128 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |