# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
471360 | grimzzz404 | Best Place (NOI17_bestplace) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* Author: grimzzz404
**/
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
void solve();
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t = 1;
//cin >> t;
FOR(t)
{
//cout << "Test Case #" << i + 1 << '\n';
solve();
}
return 0;
}
void solve()
{
int n;
cin >> n;
int one[n];
int two[n];
for (int i = 0; i < n; i++)
{
cin >> one[i] >> two[i];
}
sort(one,one+n);
sort(two,two+n);
int c = n/2;
cout << one[c] << " " << two[c];
}