比赛 20091026 评测结果 WAWWWWWWWA
题目名称 货物搬运 最终得分 20
用户昵称 ReimBurSe. 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-10-26 19:23:35
显示代码纯文本
Program move;

Type
sc=array [1..10000] of longint;

Var
s:sc;
i,j,n:longint;
temp,temp1:longint;
z:longint;

Begin
assign(input,'move.in');
assign(output,'move.out');
reset(input);
rewrite(output);
readln(n);
temp:=0;
for i:=1 to n do begin
 read(s[i]);
 temp:=temp+s[i];
end;
temp:=temp div n;
z:=0;
for i:=1 to n do
 if s[i]<temp then z:=z+(temp-s[i]);
writeln(z);
close(input);
close(output);
End.