Submission #965897

#TimeUsernameProblemLanguageResultExecution timeMemory
965897North1304Best Place (NOI17_bestplace)C++14
3 / 100
28 ms8536 KiB
#include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 1;
int x[N] , y[N];
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL); cout.tie(NULL);
    int n; cin >> n;
    for(int i=1;i<=n;i++) cin >> x[i] >> y[i];
    sort(x+1, x+n+1);
    sort(y+1, y+n+1);
    cout << (x[1] + x[n]) / 2 << ' ' << (y[1] + y[n]) / 2;
    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...