#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
int find_best(int n) {
int l = 0, r = n - 1;
while (l < r) {
int mid = (l + r) >> 1;
vector<int> res = ask(mid);
if (res[0] == 1) {
assert(res[1] == 0);
r = mid - 1;
} else if (res[1] == 1) {
l = mid + 1;
} else {
return mid;
}
}
assert(false);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
1 ms |
344 KB |
Output is correct |
4 |
Runtime error |
1 ms |
424 KB |
Execution killed with signal 6 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Runtime error |
1 ms |
344 KB |
Execution killed with signal 6 |
5 |
Halted |
0 ms |
0 KB |
- |