Submission #486621

#TimeUsernameProblemLanguageResultExecution timeMemory
486621devomega07Best Place (NOI17_bestplace)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
using l=long long;
int main()
{
	l n; cin >> n; 
	vector<l> x(n),y(n);
	for(int i=0; i<n; ++i) cin >> x[i] >> y[i];
	sort(x.begin(),x.end());
	sort(y.begin(),y.end());
	cout << x[ceil((float)n/2)] << "," << y[ceil((float)n/2] << "\n";
	return 0;
}

Compilation message (stderr)

bestplace.cpp: In function 'int main()':
bestplace.cpp:11:57: error: expected ')' before ']' token
   11 |  cout << x[ceil((float)n/2)] << "," << y[ceil((float)n/2] << "\n";
      |                                              ~          ^
      |                                                         )