제출 #71677

#제출 시각아이디문제언어결과실행 시간메모리
71677team (#119)일하는 개미 (FXCUP3_ant)C++98
90 / 100
3 ms540 KiB
#include <bits/stdc++.h>
#include "ant.h"
using namespace std;
int FindK(){
    int l=1; int r=1e8-1;
    while(l<r){
        int mid=(l+r)/2;
        if(DeliverCount(mid)) r=mid;
        else l=mid+1;
    }
    return l;
}
#Verdict Execution timeMemoryGrader output
Fetching results...