# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
62578 | imsifile | The Ant Doing Hard Work (FXCUP3_ant) | C11 | 2 ms | 248 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 mi=1, mx=99999999, md, dap;
int FindK() {
while(1){
md = (mi+mx)/2;
if(mi==mx) break;
int C = DeliverCount(md);
mi = md/(C+1)+1;
if(C) mx = md/C;
}
return md;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |