Submission #531672

#TimeUsernameProblemLanguageResultExecution timeMemory
531672kebineBest Place (NOI17_bestplace)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; void solve(){ int n; cin >> n; vector<ll>x, y; for(int i = 0; i < n; i++){ ll a, b; cin >> a >> b; x.push_back(a); y.push_back(b); } sort(x.begin(), x.end()); sort(y.begin(), y.end()); ll sX = x.size(); ll sY = y.size(); int X = x[sX/2]; int Y = y[sY/2]; cout << X << " " << Y << " "; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int tc; tc = 1; while(tc--){ solve(); } return 0; }

Compilation message (stderr)

bestplace.cpp:23:30: warning: missing terminating " character
   23 |     cout << X << " " << Y << "
      |                              ^
bestplace.cpp:23:30: error: missing terminating " character
bestplace.cpp:24:1: warning: missing terminating " character
   24 | ";
      | ^
bestplace.cpp:24:1: error: missing terminating " character
   24 | ";
      | ^~
bestplace.cpp: In function 'void solve()':
bestplace.cpp:25:1: error: expected primary-expression before '}' token
   25 | }
      | ^