제출 #872892

#제출 시각아이디문제언어결과실행 시간메모리
872892vjudge1Best Place (NOI17_bestplace)C++11
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<int> x(n),y(n); for(int i=0; i<n; i++) fin >> x[i] >> y[i]; sort(x.begin(),x.end()); sort(y.begin(),y.end()); cout << x[n/2] << ' ' << y[n/2] << '\n'; }

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

bestplace.cpp: In function 'int main()':
bestplace.cpp:6:28: error: 'fin' was not declared in this scope; did you mean 'sin'?
    6 |     for(int i=0; i<n; i++) fin >> x[i] >> y[i];
      |                            ^~~
      |                            sin