记录编号 |
363941 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Mar08] 自动统计机 |
最终得分 |
100 |
用户昵称 |
kZime |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2017-01-14 13:41:19 |
内存使用 |
0.32 MiB |
显示代码纯文本
- #include<cstdio>
- #include<iostream>
- #include<algorithm>
- #include<vector>
- using namespace std;
- vector < int > zz;
- int n,s;double x,y;
- int main(){
- freopen("stats.in","r",stdin);
- freopen("stats.out","w",stdout);
- scanf("%d",&n);
- for(int x,i=0;i<n;i++){
- scanf("%d",&x);
- zz.push_back(x);
- s+=x;
- }
- sort(zz.begin(),zz.end());
- y=(double)s/n;
- if(n%2==0)x=(double)(zz[n/2-1]+zz[n/2])/2;
- else x=zz[n/2];
- printf("%.6f\n%.6f\n",y,x);
- return 0;
- }