记录编号 |
269354 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Mar08] 自动统计机 |
最终得分 |
100 |
用户昵称 |
Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2016-06-13 15:24:34 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cmath>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
const int maxn=5001;
int a[maxn];
void Init();
int main(){
freopen("stats.in","r",stdin);
freopen("stats.out","w",stdout);
Init();
return 0;
}
void Init(){
int n,tot=0;scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);tot+=a[i];
}
double k=(double)tot/n;
printf("%.6lf\n",k);
sort(a+1,a+n+1);
int hehe=n/2;
if(n%2==0){
double haha=(double)(a[hehe]+a[hehe+1])/2;
printf("%.6lf\n",haha);
}
else {
double end=(double) a[hehe+1];
printf("%.6lf\n",end);
}
}