이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
int n=0;
int a=0;
double b=0;
double c=0;
int i=0;
double d;
double f;
cin>>n;
for(i=0;i<n;i++) {
cin>>a;
b += a;
cin>>a;
c += a;
}
b/=n;
c/=n;
d = b - floor(b);
f = ceil(b) - b;
if(d < f)
b = floor(b);
else
b = ceil(b);
d = c - floor(c);
f = ceil(c) - c;
if(d < f)
c = floor(c);
else
c = ceil(c);
cout<<b<<" "<<c<<endl;
return 0;
}
# | 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... |