제출 #1207211

#제출 시각아이디문제언어결과실행 시간메모리
1207211porquenomedejainiciarsesion철로 (IOI14_rail)C++20
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include <rail.h>
using namespace std;
void findLocation(int n, int first, int location[], int stype[]){
    location[0]=first;
    for(int i=1;i<n;i++){
        int a=getDistance(0,i);
        location[i]=first+a;
    }
}

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

rail.cpp:2:10: fatal error: rail.h: No such file or directory
    2 | #include <rail.h>
      |          ^~~~~~~~
compilation terminated.