제출 #71675

#제출 시각아이디문제언어결과실행 시간메모리
71675team (#119)일하는 개미 (FXCUP3_ant)C++98
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
int FindK(){
    int l=0; int r=1e8-1;
    while(l<r){
        int mid=(l+r)/2;
        if(DeliverCount(mid)) r=mid;
        else l=mid+1;
    }
    return l;
}

컴파일 시 표준 에러 (stderr) 메시지

ant.cpp: In function 'int FindK()':
ant.cpp:7:12: error: 'DeliverCount' was not declared in this scope
         if(DeliverCount(mid)) r=mid;
            ^~~~~~~~~~~~