# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
71731 | 고윤하 연말콘 언제하니 (#119) | The Ant Doing Hard Work (FXCUP3_ant) | C++98 | 2 ms | 636 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 "ant.h"
int FindK() {
int l = 1, r = 100000000;
while (l+1<r) {
int m = (l+r)/2;
if (DeliverCount(m)) r = m;
else l = m;
}
return r;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |