이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int query(ll a){
cout<<"? "<<a<<endl;
int b;
cin>>b;
return b;
}
void answer(ll a){
cout<<"= "<<a<<endl;
exit(0);
}
int main(){
int N;
cin>>N;
int ans=query(N/2);
ans=query(1);
if(ans==1){
ans=query(N/2-1);
if(ans==0)answer(N/2-1);
int last=N/2-2;
for(int i=2,j=N/2-2;last>1;i++,j--){
ans=query(i);
if(ans==0)answer(last);
last--;
if(last<=1)break;
ans=query(j);
if(ans==0)answer(last);
last--;
}
answer(1);
}
else{
ans=query(N);
if(ans==0)answer(N);
int last=N-1;
for(int i=2,j=N-1;last>N/2+1;i++,j--){
ans=query(i);
if(ans==0)answer(last);
last--;
if(last<=N/2+1)break;
ans=query(j);
if(ans==0)answer(last);
last--;
}
answer(N/2+1);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |