记录编号 61531 评测结果 AAAAAAAAAA
题目名称 股票收益 最终得分 100
用户昵称 Gravatar明天 是否通过 通过
代码语言 Pascal 运行时间 0.053 s
提交时间 2013-06-11 21:01:28 内存使用 0.17 MiB
显示代码纯文本
const
  maxn=1000;
type
  atype=array[1..maxn] of extended;
var
  a:atype;
  n,i,j:integer;
  total,ans2:longint;
  ans,temp:extended;
begin
  assign(input,'stock.in'); reset(input);
  assign(output,'stock.out'); rewrite(output);
  fillchar(a,sizeof(a),0);
  readln(n);
  for i:=1 to n do
    read(a[i]);
  readln;
  readln(total);
  ans:=0; ans2:=0;
  for i:=1 to n-1 do
    for j:=i+1 to n do
	begin
		temp:=total*100 div round(100*a[i])*(a[j]-a[i]);
		if temp>0 then inc(ans2);
		if temp>ans then
		  ans:=temp;
	end;
  writeln(ans:0:3);
  writeln(ans2/(n*(n-1)/2):0:3);
  close(input); close(output);
end.