Submission #548855

#TimeUsernameProblemLanguageResultExecution timeMemory
548855Trisanu_DasHotter Colder (IOI10_hottercolder)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "hottercolder.h"
using namespace std;
 
int HC(int n){
  int l = 1, r = n;
  while(l < r){
    int mid = (l + r) / 2;
    Guess(l);
    try_ = Guess(r);
    if(try_ == 0) return mid;
    else if(try_ == 1) l++;
    else r--;
  }
}

Compilation message (stderr)

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