Submission #828575

#TimeUsernameProblemLanguageResultExecution timeMemory
828575NK_Best Place (NOI17_bestplace)C++17
100 / 100
32 ms3084 KiB
// Success consists of going from failure to failure without loss of enthusiasm
#include <bits/stdc++.h>
 
using namespace std;
 
#define nl '\n'
#define pb push_back 
#define mp make_pair
#define f first
#define s second
#define sz(x) int(x.size())
 
template<class T> using V = vector<T>;
using vi = V<int>;
using ll = long long;
using pi = pair<int, int>;
using vpi = V<pi>;
using vl = V<ll>;

int main() {
	cin.tie(0)->sync_with_stdio(0);
 	
	int N; cin >> N;
	vi X(N), Y(N);
	for(int i = 0; i < N; i++) cin >> X[i] >> Y[i];

	sort(begin(X), end(X));
	sort(begin(Y), end(Y));

	cout << X[N / 2] << " " << Y[N / 2] << endl;

	exit(0-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...