이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
map <ll,bool> bio;
int main()
{
int n;
cin >> n;
int mx = 62;
ll ans = 0LL;
cout << "? 1" << endl;
bio[1]=true;
ll lastask = 1;
for(int i = mx; i >= 0; i--)
{
ll now = ans + (1LL<<i);
if(lastask-now > 1 && !bio[lastask-now])
{
cout << "? " << lastask-now << endl;
int rez;
cin >> rez;
if(rez==1)
{
bio[lastask-now]=true;
lastask -= now;
continue;
}
else
{
bio[lastask-now]=true;
ans += (1LL<<i);
lastask -= now;
continue;
}
}
if(lastask+now <= n && !bio[lastask+now])
{
cout << "? " << lastask+now << endl;
int rez;
cin >> rez;
lastask += now;
bio[lastask]=true;
if(rez==0)
{
ans += (1LL<<i);
}
continue;
}
}
cout << "= " << ans;
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... |