Submission #1008338

#TimeUsernameProblemLanguageResultExecution timeMemory
1008338ALTAKEXEHotter Colder (IOI10_hottercolder)C++17
Compilation error
0 ms0 KiB
#include "grader.h"
#include "hottercolder.h"
#include <bits/stdc++.h>
using namespace std;
int HC(int N)
{
   int g = Guess(1);
   int h = Guess(N);
   if (g == 0)
      return N / 2;
   if (g < 0)
      return N / 4;
   if (g > 0)
      return 3 * N / 4;
   return 0;
}

Compilation message (stderr)

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