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 <iostream>
#include <fstream>
#include <bits/stdc++.h>
using namespace std;
#define int long long
//ofstream fout(".out");
//ifstream fin(".in");
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, xAvg = 0, yAvg = 0;
cin >> n;
for (int i = 0; i < n; ++i)
{
int x, y;
cin >> x >> y;
xAvg += x;
yAvg += y;
}
xAvg /= n;
yAvg /= n;
cout << xAvg << " " << yAvg << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |