比赛 20091110 评测结果 WWWWWWWWWW
题目名称 股票收益 最终得分 0
用户昵称 EnAsn 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-10 10:06:50
显示代码纯文本
program ex;
type
 ss=array[1..1000]of real;
var
 f:ss;
 n,m:longint;
 i,j,t:longint;
 ans1,ans2,temp:real;
begin
 assign(input,'stock.in');
 assign(output,'stock.out');
 reset(input);
 rewrite(output);
 readln(n);
 for i:=1 to n do read(f[i]);
 readln;
 readln(m);
 close(input);
 for i:=1 to n-1 do
  for j:=i+1 to n do
   begin
    inc(t);
    temp:=(f[j]-f[i])*m;
    if temp>0 then ans2:=ans2+1;
    if temp>ans1 then ans1:=temp;
   end;
 writeln(ans1:0:3);
 writeln(ans2/t:0:3);
 close(output);
end.