# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
108005 | reda | The Big Prize (IOI17_prize) | C++14 | 84 ms | 1228 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<bits/stdc++.h>
#include "prize.h"
using namespace std;
int find_best(int n)
{
int mid = n/2;
vector<int> arr=ask(mid);
if(arr[0]==0 && arr[1]==0)return mid;
else{
if(arr[0]>arr[1])
{
return find_best(mid);
}
else if (arr[1]>arr[0]) return find_best(mid+n/2);
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |