Submission #927208

#TimeUsernameProblemLanguageResultExecution timeMemory
927208vjudge1Hotter Colder (IOI10_hottercolder)C++11
Compilation error
0 ms0 KiB
#include "/home/ioi2010-contestant/hottercolder/hottercolder.h" using namespace std; void HC(int n) { int l = 1, r = n, mid; int last = n; Guess(n); while(true) { mid = (l + r) >> 1; int g = Guess(mid); if(g == 1) { r = mid; } else if(g == -1) { l = mid; } else { cout << (last - mid) / 2; return; } last = mid; } }

Compilation message (stderr)

hottercolder.cpp:1:10: fatal error: /home/ioi2010-contestant/hottercolder/hottercolder.h: No such file or directory
    1 | #include "/home/ioi2010-contestant/hottercolder/hottercolder.h"
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.