# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
499805 | ccno1 | Best Place (NOI17_bestplace) | C++17 | 91 ms | 2200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <climits>
#define ll long long int
#define all(x) (x).begin(), (x).end()
const ll inf = LLONG_MAX;
using namespace std;
ll nxt(){
ll x = 0;
cin >> x;
return x;
}
template <typename type>
istream &operator>>(istream &in, vector <type> &vec){
ll len = vec.size();
for(int i = 0; i < len; i++){
in >> vec[i];
}
return in;
}
template <typename type>
ostream &operator<<(ostream &out, vector <type> &vec){
for (auto val : vec){
out << val << " ";
}
return out;
}
ll round_n(double a){
if(a - floor(a) > 0.5){
return ceil(a);
}else{
return floor(a);
}
}
void testcase(){
ll n = nxt();
vector <int> x(n);
vector <int> y(n);
for(int i = 0;i < n ; i++){
x[i] = nxt();
y[i] = nxt();
}
sort(all(x));
sort(all(y));
cout << x[floor(n/2)] << " " << y[floor(n/2)] << endl;
}
int main(){
ios_base::sync_with_stdio;
cin.tie(0);
cout.tie(0);
testcase();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |