比赛 模拟测试2 评测结果 WWWWAWAWWW
题目名称 排序工作量 最终得分 20
用户昵称 itachi 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-10-12 20:26:56
显示代码纯文本
program t2(input,output);
var
ans:array[1..10000]of longint;
data:array[1..10000]of real;
n,i,j:integer;
begin
fillchar(ans,sizeof(ans),0);
fillchar(data,sizeof(data),0);
assign(input,'sortt.in');
reset(input);
readln(input,n);
for i:= 1 to n do
read(input,data[i]);
close(input);
for i:= n-1 downto 1 do
 begin
   for j:=n downto i+1 do
     begin
     if data[j]<data[i] then inc(ans[i],ans[j]+1);
     end;
 end;
for i:= 2 to n do
begin
inc(ans[1],ans[i]);
end;
assign(output,'sortt.out');
rewrite(output);
write(output,ans[1]);
close(output);
end.