제출 #494281

#제출 시각아이디문제언어결과실행 시간메모리
494281CjSidharthBest Place (NOI17_bestplace)C++14
컴파일 에러
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;

컴파일 시 표준 에러 (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 | {
      | ^