比赛 |
16暑期热身练习 |
评测结果 |
AAAAAAAAAA |
题目名称 |
自动统计机 |
最终得分 |
100 |
用户昵称 |
Ostmbh |
运行时间 |
0.007 s |
代码语言 |
C++ |
内存使用 |
0.32 MiB |
提交时间 |
2016-07-01 09:50:07 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <iomanip>
using namespace std;
long double shu[501];
int main(){
freopen("stats.in","r",stdin);
freopen("stats.out","w",stdout);
int n;long double b,temp;
cin>>n;b=0;
for(int a=1;a<=n;a++){cin>>shu[a];b+=shu[a];}
for(int a=1;a<=n;a++){for(int c=1;c<=n-a;c++){
if(shu[a]<shu[a+c]){temp=shu[a];shu[a]=shu[a+c];shu[a+c]=temp;}}}
cout<<setiosflags(ios::fixed)<<setprecision(6);
cout<<b/n<<endl;
if(n%2==0)cout<<setiosflags(ios::fixed)<<setprecision(6)<<(shu[n/2]+shu[n/2+1])/2;
else cout<<setiosflags(ios::fixed)<<setprecision(6)<<shu[n/2+1];
}