Submission #365127

#TimeUsernameProblemLanguageResultExecution timeMemory
365127MilosMilutinovicHotter Colder (IOI10_hottercolder)C++14
Compilation error
0 ms0 KiB
#include "grader+ 1.h"
#include <bits/stdc++.h>

using namespace std;

int HC(int n){
  int bot = 1, top = n;
  while (bot <= top) {
    int mid = bot + top >> 1;
    int x = Guess(bot), y = Guess(top);
    if (y == 0) {
      return mid;
    }
    if (y < 0) {
      top = mid - 1;
    } else {
      bot = mid + 1;
    }
  }
}

Compilation message (stderr)

hottercolder.cpp:1:10: fatal error: grader+ 1.h: No such file or directory
    1 | #include "grader+ 1.h"
      |          ^~~~~~~~~~~~~
compilation terminated.