#include <bits/stdc++.h>
using namespace std;
set<int> unused;
int query( long long c ) {
unused.erase( c );
cout << "? " << c << endl;
int ans;
cin >> ans;
return ans;
}
void answer( long long c ) {
cout << "= " << c << endl;
}
int main() {
long long n;
cin >> n;
for ( int i = 1; i <= 400; i++ )
unused.insert( i );
long long l = 0, r = n;
while ( r - l > 1 ) {
long long c = (l + r) / 2;
int x = *unused.begin();
query( x );
if ( query( c + x ) )
r = c;
else
l = c;
}
answer( r );
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Hair color 7 was used multiple times |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Hair color 7 was used multiple times |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Hair color 7 was used multiple times |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Hair color 7 was used multiple times |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Hair color 7 was used multiple times |
2 |
Halted |
0 ms |
0 KB |
- |