# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
71714 | chobo (#119) | 일하는 개미 (FXCUP3_ant) | C++98 | 3 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"
#include <stdio.h>
#include <algorithm>
using namespace std;
int FindK() {
int s=1,e=1e8,m;
while(s<=e){
m=(s+e)>>1;
printf("%d ",m);
if(DeliverCount(m)) e=m-1;
else s=m+1;
}
return s;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |