Submission #345630

#TimeUsernameProblemLanguageResultExecution timeMemory
345630ahmetXoractive (IZhO19_xoractive)C++14
Compilation error
0 ms0 KiB
#include "interactive.h" #include <bits/stdc++/h> using namespace std; vector<int> guess(int n) { vector <int> ans; for (int i = 1; i <= n; i++) { ans.push_back(ask(i)); } return ans; }

Compilation message (stderr)

Xoractive.cpp:2:10: fatal error: bits/stdc++/h: No such file or directory
    2 | #include <bits/stdc++/h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.