Submission #931126

# Submission time Handle Problem Language Result Execution time Memory
931126 2024-02-21T09:47:10 Z Laav10 Best Place (NOI17_bestplace) C++14
0 / 100
2 ms 348 KB
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
#define INF(t) numeric_limits<t>::max()

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0); cout.tie(0); cerr.tie(0);
	#ifndef ONLINE_JUDGE
		(void)!freopen("input.txt", "r", stdin);
		(void)!freopen("info.txt", "w", stderr);
		(void)!freopen("output.txt", "w", stdout);
	#endif

	ll N,i;
	cin>>N;
	vector<ll> X(N), Y(N);
	for(i=0; i<N; i++)
	{
		cin>>X[i]>>Y[i];
	}
	sort(X.begin(), X.end());
	sort(Y.begin(), Y.end());

	cout<< X[ceil(N/2)]<<" "<<Y[ceil(N/2)];

	#ifndef ONLINE_JUDGE
		cerr << "time taken: " << (float)clock() / CLOCKS_PER_SEC << " secs" << endl;
	#endif
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 344 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 344 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -