제출 #729924

#제출 시각아이디문제언어결과실행 시간메모리
729924Akshat369Best Place (NOI17_bestplace)C++17
3 / 100
21 ms3056 KiB
#include <bits/stdc++.h>

using namespace std;
#define int long long
#define endl '\n'
#define size size()
const int mod = 1000 * 1000 * 1000 + 7;
const int N = 100005;

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);


    int n;
    cin>>n;
    int a[n],b[n];
    for (int i = 0; i < n; ++i) {
        cin>>a[i]>>b[i];
    }
    int x = 0, y= 0;
    for (int i = 0; i < n; ++i) {
        x += a[i];
        y+= b[i];
    }
    x = x / n;
    y = y / n;
    cout<<x<<" "<<y<<endl;

}
#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...