이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
int n, res = 0;
void ask(int x) {
cout << "? " << x << "\n";
cout.flush();
cin >> res;
}
int cb() {
int l = 1, r = n, sol = -1;
while (l <= r) {
int mid = (l + r) / 2;
ask(mid);
if (res == 0) {
sol = mid;
break;
} else if (res == 1) {
r = mid - 1;
} else {
l = mid + 1;
}
}
return sol;
}
int main() {
cin >> n;
int answer = cb();
cout << "= " << answer;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |