Submission #1288066

#TimeUsernameProblemLanguageResultExecution timeMemory
1288066hoangphuc210108Best Place (NOI17_bestplace)C++20
3 / 100
14 ms3884 KiB
#include <bits/stdc++.h>
using namespace std;


int main()
{
    ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0);

    int n; cin >> n;

    int sumx = 0, sumy = 0;

    for(int i = 1; i <= n; i++){
        int x, y; cin >> x >> y;

        sumx += x;
        sumy += y;
    }

    cout << sumx / n << " " << sumy / n;

    return 0;
}
#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...