제출 #108010

#제출 시각아이디문제언어결과실행 시간메모리
108010reda커다란 상품 (IOI17_prize)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> #include "prize.h" using namespace std; int find_best(int n) { int low , high; low =0; high=n-1; while(low<=high) { int mid=(low+high)/2; vector<int> arr=ask(mid); if(arr[0]==0 && arr[1]==0)return mid; else{ if(arr[0])high=mid; else low=mid+1; } return -1; }

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

prize.cpp: In function 'int find_best(int)':
prize.cpp:19:1: error: expected '}' at end of input
 }
 ^
prize.cpp:19:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^