#include <bits/stdc++.h>
using namespace std;
int main(int argc, char const *argv[])
{
int N;
cin >> N;
int j = 0;
int k = 1;
for (int i = 1; i <= N; i++)
{
if (i % 2 == 1)
{
cout << "? " << k << endl;
int ans;
cin >> ans;
if (ans == 0)
{
cout << "= " << (N - i) << endl;
break;
}
k++;
}
else
{
cout << "? " << (N - j) << endl;
int ans;
cin >> ans;
if (ans == 0)
{
cout << "= " << (N - i) << endl;
break;
}
j++;
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Wrong guess |
2 |
Halted |
0 ms |
0 KB |
- |