记录编号 |
438395 |
评测结果 |
AAAAAAAAAA |
题目名称 |
股票收益 |
最终得分 |
100 |
用户昵称 |
stdafx.h |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.016 s |
提交时间 |
2017-08-15 23:08:09 |
内存使用 |
0.21 MiB |
显示代码纯文本
# define maxn 1010
# include <math.h>
# include <stdio.h>
int n,tot; double m,answer,t,v[maxn];
int main(){
freopen("stock.in","r",stdin);
freopen("stock.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%lf",&v[i]);
scanf("%lf",&m);
for(int i=1;i<n;i++) for(int j=i+1;j<=n;j++) {
t=floor(m/v[i])*(v[j]-v[i]);
tot+=(t>0); if(t>answer) answer=t;
}
printf("%.3lf\n%.3lf", answer,(double)(tot)/(n*(n-1)>>1));
return 0;
}