#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll now = 0;
bool ask(ll x) {
now = x;
cout << "? " << x << endl;
cin >> x; return x;
}
void answer(ll x) {
cout << "= " << x << endl;
exit(0);
}
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
ll n;
cin >> n;
ll l = 1, r = n;
ask(1);
while (l < r) {
if (now == l) {
if (ask(r)) l += 2;
else answer(r - l + 1);
}
else {
if (ask(l)) r -= 2;
else answer(r - l + 1);
}
}
if (now == l) {
r += 2;
// r - l == 1
if (r - l == 1) {
answer(1);
}
else if (r - l == 2) {
if (ask(r - 1)) answer(1);
else answer(2);
}
}
else {
l -= 2;
if (r - l == 1) {
answer(1);
}
else if (r - l == 2) {
if (ask(l + 1)) answer(1);
else answer(2);
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |