Submission #460660

#TimeUsernameProblemLanguageResultExecution timeMemory
460660Sad_BusBest Place (NOI17_bestplace)C++14
3 / 100
26 ms2212 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...