제출 #919196

#제출 시각아이디문제언어결과실행 시간메모리
919196PlayVoltzTruck Driver (IOI23_deliveries)C++17
컴파일 에러
0 ms0 KiB
#include "deliveries.h" #include <bits/stdc+.h> using namespace std; #define int long long int l; vector<int> w; void init(signed N, vector<signed> U, vector<signed> V, vector<signed> T, vector<signed> W){ w=W; l=T[0]; } long long max_time(signed s, signed x){ w[s]=x; return 2*l*min(w[0], w[1]); }

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

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