Submission #460681

#TimeUsernameProblemLanguageResultExecution timeMemory
460681Sad_BusBest Place (NOI17_bestplace)C++14
0 / 100
69 ms292 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; float xAvg = 0, yAvg = 0; cin >> n; for (int i = 0; i < n; ++i) { float x, y; cin >> x >> y; xAvg += x; yAvg += y; } xAvg /= n; yAvg /= n; cout << round(xAvg) << " " << round(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...