Submission #872892

#TimeUsernameProblemLanguageResultExecution timeMemory
872892vjudge1Best Place (NOI17_bestplace)C++11
Compilation error
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'; }

Compilation message (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