제출 #290886

#제출 시각아이디문제언어결과실행 시간메모리
290886PKhing"The Lyuboyn" code (IZhO19_lyuboyn)C++14
컴파일 에러
0 ms0 KiB
#include "interactive.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) 메시지

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