比赛 20121109 评测结果 AAAAAATTTT
题目名称 三元数对 最终得分 60
用户昵称 Lyre 运行时间 4.040 s
代码语言 Pascal 内存使用 0.42 MiB
提交时间 2012-11-09 11:49:47
显示代码纯文本
program fall;
var ans,n,i,j:longint;
    a,f:array [1..33333] of longint;
begin
assign(input,'three.in'); reset(input);
assign(output,'three.out'); rewrite(output);
 readln(n); fillchar(f,sizeof(f),0); ans:=0;
 for i:=1 to n do readln(a[i]);
 for i:=1 to n-1 do
  for j:=i+1 to n do
   if a[j]>a[i] then inc(f[i]);
 for i:=1 to n-2 do
  for j:=i+1 to n-1 do
   if a[j]>a[i] then inc(ans,f[j]);
 writeln(ans);
 close(input);
 close(output);
end.