# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
491417 | arnav_mehta | Best Place (NOI17_bestplace) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
long long n,x,y;
/*
thinking...
6
1 0
3 0
5 0
7 0
9 0
11 0
to find x,y
we can do it by MEAN!
*/
long long sx,xy;
int main()
{
cin>>n;
for(long long i =0;i<n;++i){
cin>>x>>y;
sx+=x;
sy+=y;
}
cout<<(sx/n)<<" "<<(sy/n);
}