Submission #895760

#TimeUsernameProblemLanguageResultExecution timeMemory
895760kh0iBest Place (NOI17_bestplace)C++17
100 / 100
32 ms8672 KiB
#include "bits/stdc++.h" using namespace std; const int N = 1e6 + 3; int n, x[N], y[N]; signed main(){ cin.tie(nullptr)->sync_with_stdio(false); 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[(n + 1) / 2] << ' ' << y[(n + 1) / 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...