Submission #288340

#TimeUsernameProblemLanguageResultExecution timeMemory
288340davi_bartThe Big Prize (IOI17_prize)C++17
20 / 100
1 ms384 KiB
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define fi first
#define se second
#define ld long double
vector<int> ask(int i);
int find_best(int n){
  int l=0,r=n;
  while(l<r-1){
    int m=(l+r)/2;
    auto res=ask(m);
    if(res[0]==0)l=m;
    else r=m;
  }
  return l;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...