#include <bits/stdc++.h>
using namespace std;
#define int long long
#define N "\n";
void solve(){
int n;
cin>>n;
int l=1,r=n;
int ans=(l+r)/2;
while(l<=r){
int mid=(l+r)/2;
cout<<"?"<<mid<<endl;
int is_noticed;
cin>>is_noticed;
if(is_noticed){
l=mid;
ans=min(ans,mid);
}
else{
r=mid-1;
}
}
cout<<ans<<endl;
}
signed main(){
cout.tie(NULL);
cin.tie(NULL);
ios_base::sync_with_stdio(NULL);
int t=1;
// cin>>t;
while(t--)solve();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
200 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
200 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
200 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
200 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
200 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |