제출 #738472

#제출 시각아이디문제언어결과실행 시간메모리
738472Elvin_Fritl커다란 상품 (IOI17_prize)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
#include "prize.h"

int find_best(int n) {
	int l=0,r=n-1;
	while(l<=r){
        int mid=(l+r)>>1;
        int a[2]=ask(mid);
        if(a[0] == a[1] && a[0] == 0){
            return mid;
        }
        if(a[0]==0){
            l=mid+1;
        }
        else{
            r=mid-1;
        }
	}
	return 0;
}

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

prize.cpp: In function 'int find_best(int)':
prize.cpp:9:21: error: array must be initialized with a brace-enclosed initializer
    9 |         int a[2]=ask(mid);
      |                  ~~~^~~~~