제출 #345630

#제출 시각아이디문제언어결과실행 시간메모리
345630ahmetXoractive (IZhO19_xoractive)C++14
컴파일 에러
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; }

컴파일 시 표준 에러 (stderr) 메시지

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