记录编号 275158 评测结果 AAAAAAAAAA
题目名称 [USACO Mar08] 自动统计机 最终得分 100
用户昵称 GravatarA8_LQC 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2016-07-01 15:56:56 内存使用 0.31 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;

int main(){
    freopen("stats.in","r",stdin);
	freopen("stats.out","w",stdout);
	int a=0,all=0,b[500]={0},x;
	double pj=0,zw=0;
    scanf("%d",&a);
	for(x=0;x<a;x++){
		scanf("%d",&b[x]);
		all+=b[x];
	}
	pj=(double)all/a; 
	sort(b,b+x);
	if(a%2==1)zw=b[x/2];
	else if(a%2==0){
	zw=(double)(b[(x/2)-1]+b[x/2])/2;
	}
	printf("%.6lf\n%.6lf",pj,zw);
	return 0;
}