답안 #1018763

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1018763 2024-07-10T09:33:19 Z vjudge1 커다란 상품 (IOI17_prize) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
#define lli long long int


int find_best(int n){
    int a[2];
    int x=1,y=n,z;
    while(x!=y){
        z=(x+y)/2;
        a=ask(z);
        if(a[0]){
            y=z-1;
        }
        else if(a[1]){
            x=z+1;
        }
        else{
            return z;
        }
    }
    return x;
}

Compilation message

prize.cpp: In function 'int find_best(int)':
prize.cpp:11:11: error: 'ask' was not declared in this scope
   11 |         a=ask(z);
      |           ^~~