제출 #1005972

#제출 시각아이디문제언어결과실행 시간메모리
1005972andecaandeciBest Place (NOI17_bestplace)C++17
100 / 100
37 ms3164 KiB
#include<bits/stdc++.h>
using namespace std;

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    vector<int> x(n), y(n);

    for (int i = 0; i < n; i++) {
        cin >> x[i] >> y[i];
    }

    sort(x.begin(), x.end());
    sort(y.begin(), y.end());

    if (n & 1) {
        cout << x[n/2] << ' ' << y[n/2] << '\n';
    } else {
        cout << (x[n/2] + x[n/2-1]) / 2 << ' ' << (y[n/2] + y[n/2-1]) / 2 << '\n';
    }
}
#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...