# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
785804 | mekybr | Best Place (NOI17_bestplace) | C++14 | 66 ms | 2992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,ansx,ansy,len;
cin>>n;
int coordx[n];
int coordy[n];
for(int x=0;x<n;x++){
int xi,yi;
cin>>xi>>yi;
coordx[x]=xi;
coordy[x]=yi;
}
len=sizeof(coordx)/sizeof(coordx[0]);
sort(coordx,coordx+n);
sort(coordy,coordy+n);
for(int y=0;y<n;y++){
if(n%2==0){
//ansx=((coordx[(n/2)-1]+coordx[(n/2)])/2);
//ansy=((coordy[(n/2)-1]+coordy[(n/2)])/2);
ansx=0.5*(coordx[(n/2)-1]+coordx[(n/2)]);
ansy=0.5*(coordy[(n/2)-1]+coordy[(n/2)]);
}
else{
ansx=coordx[((n+1)/2)-1];
ansy=coordy[((n+1)/2)-1];
}
}
cout<<ansx<<" "<<ansy;
}
컴파일 시 표준 에러 (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... |