제출 #545345

#제출 시각아이디문제언어결과실행 시간메모리
545345Trisanu_DasBest Place (NOI17_bestplace)C++17
컴파일 에러
0 ms0 KiB
#include <bit/stdc++.h> using namespace std; const int MAXN = 100000; int N, X[MAXN], Y[MAXN]; int main(){ cin >> N; for (int i = 0; i < N; ++i) { cin >> X[i] >> Y[i]; } sort(X, X+N); cout << X[N/2] << " 0" << endl; }

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

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