This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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);
}
}
answer(1);
return 0;
}
# | 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... |