답안 #71714

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
71714 2018-08-25T13:00:16 Z chobo(#2238, andy627) 일하는 개미 (FXCUP3_ant) C++
0 / 100
3 ms 248 KB
#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;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB Wrong
2 Halted 0 ms 0 KB -