# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
523601 | dron_rp | The Big Prize (IOI17_prize) | C++14 | 95 ms | 328 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "prize.h"
using namespace std;
int find_best(int n) {
int lo = 0, hi = n-1;
while (lo<=hi){
int mid = lo + (hi-lo)/2;
vector<int> ans = ask(mid);
if (ans[0] == 0 && ans[1] == 0) return mid;
else if (ans[0] > ans[1]){
hi = mid-1;
} else{
lo = mid+1;
}
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |