제출 #545298

#제출 시각아이디문제언어결과실행 시간메모리
545298Trisanu_DasBest Place (NOI17_bestplace)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc+.h> using namespace std; #define ff first #define ss second int main(){ int n; cin >> n; pair<int, int> arr[n]; for(int i = 0; i < n; i++) cin >> arr[i].ff >> arr[i].ss; if(n == 2){ cout << arr[0].ff << ' ' arr[0].ss << '\n'; } }

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

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