Submission #872892

# Submission time Handle Problem Language Result Execution time Memory
872892 2023-11-14T04:22:13 Z vjudge1 Best Place (NOI17_bestplace) C++11
Compilation error
0 ms 0 KB
#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

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