제출 #730046

#제출 시각아이디문제언어결과실행 시간메모리
730046Akshat369Best Place (NOI17_bestplace)C++17
100 / 100
39 ms3804 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]; } sort(a,a+n); sort(b,b+n); cout<<a[n/2]<<" "<<b[n/2]<<endl; //cout<<v[n/2].second; }
#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...