# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
417024 |
2021-06-03T10:38:12 Z |
aryan12 |
Colors (BOI20_colors) |
C++17 |
|
1 ms |
200 KB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
void Solve() {
int n;
cin >> n;
int l = 1, r = n, cnt = 0, ans = n;
while(l <= r) {
int response;
if(cnt % 2 == 0) {
cout << "? " << l++ << endl;
}
else {
cout << "? " << r-- << endl;
}
cnt++;
cin >> response;
if(cnt == 1)
continue;
if(response == 1) {
ans = min(ans, r - l + 2);
}
else {
cout << "! " << ans << endl;
break;
}
}
}
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
Solve();
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Token parameter [name=cmd] equals to "!", doesn't correspond to pattern "[?=]" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Token parameter [name=cmd] equals to "!", doesn't correspond to pattern "[?=]" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Token parameter [name=cmd] equals to "!", doesn't correspond to pattern "[?=]" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Token parameter [name=cmd] equals to "!", doesn't correspond to pattern "[?=]" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Token parameter [name=cmd] equals to "!", doesn't correspond to pattern "[?=]" |
2 |
Halted |
0 ms |
0 KB |
- |