Submission #531678

#TimeUsernameProblemLanguageResultExecution timeMemory
531678christinelynnBest Place (NOI17_bestplace)C++17
100 / 100
42 ms4028 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 << "\n"; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int tc; tc = 1; while(tc--){ solve(); } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...