제출 #992712

#제출 시각아이디문제언어결과실행 시간메모리
992712MuhammetSoccer Stadium (IOI23_soccer)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #include "longesttrip.h" using namespace std; vector<int> longest_trip(int n, int d) { vector <int> v; for(int i = 0; i < n; i++) v.push_back(i); return v; }

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

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