이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
#define int long long
int n, at;
bool qry(int x) {
if (at <= n / 2) at += x;
else at -= x;
cout << "? " << at << endl;
bool ans; cin >> ans;
return ans;
}
int32_t main() {
cin >> n;
bool added = true;
at = 1;
int test = 0;
for (int i = 62; i >= 0; --i) {
int chg = test + (1LL << i);
if (chg >= n) continue;
if (!added) at += 1LL << i;
added = !added, test = chg;
}
cout << "? " << at << endl;
int tmp; cin >> tmp;
int sum = 0;
for (int i = 62; i >= 0; --i) {
int chg = sum + (1LL << i);
if (chg >= n) continue;
if (!qry(chg)) sum = chg;
}
cout << "= " << sum + 1 << '\n';
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... |