Submission #494281

#TimeUsernameProblemLanguageResultExecution timeMemory
494281CjSidharthBest Place (NOI17_bestplace)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h>
#define REP(i,a,b) for(int i = a; i < b;i++)
typedef long long int ll;
using namespace std;
int main()
{
    ll n,x1,y1; cin >> n;
    vector<ll> x(n), y(n);
    REP(i,0,n)
    {
        cin >> x1 >> y1;
        x.push_back(x1);y.push_back(y1);
    }
    sort(x.begin(),x.end());
    sort(y.begin(),y.end());
    cout<<x[n/2]<<" "<<y[n/2];
    return 0;

Compilation message (stderr)

bestplace.cpp: In function 'int main()':
bestplace.cpp:17:13: error: expected '}' at end of input
   17 |     return 0;
      |             ^
bestplace.cpp:6:1: note: to match this '{'
    6 | {
      | ^