#include <bits/stdc++.h>
using namespace std;
#define int long long
int l, r, ans, c;
void query(int x)
{
cout<<"? "<<x<<endl;
cin>>ans;
}
int32_t main()
{
ios_base::sync_with_stdio(false); cin.tie(0);
int n; cin>>n;
l=n/3, r=l;
query(l);
int t=1;
for(int i=62; i>=0; i--)
{
if((1LL<<i)+r<=n&&t%2==1)
{
r+=(1LL<<i);
query(r);
if(ans==1)
{
l+=min(r-l, 1LL<<i);
}
t++;
}
else if((1LL<<i)<l)
{
l-=(1LL<<i);
query(l);
if(ans==1)
{
r-=min(r-l, (1LL<<i));
}
t++;
}
else if(r+(1<<i)<=n)
{
r+=(1LL<<i);
query(r);
if(ans==1)
{
l+=min(r-l, 1LL<<i);
}
}
}
cout<<"= "<<abs(l-r)+1<<endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |