比赛 20101118 评测结果 AAWAAAAAAA
题目名称 分班 最终得分 90
用户昵称 nick09 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-18 08:36:31
显示代码纯文本
var  n,i,j,k,m,min,max,l,r:longint;
     a:array[0..51]of int64;
     tot,s:int64;
begin
assign(input,'groupa.in');reset(input);
assign(output,'groupa.out');rewrite(output);
readln(n);
tot:=0; s:=0;
for i:=1 to n do
  begin
  read(a[i]);tot:=tot+a[i];
  end;
readln(l,r);
if (tot div n <l)or(tot div n>r) then
  begin writeln('-1');close(input);close(output);halt;   end;
tot:=0;  s:=0;
for i:=1 to n do
 begin
 if a[i]<l then tot:=tot+l-a[i];
 if a[i]>r then s:=s+a[i]-r;

 end;
if tot<s then tot:=s;
writeln(tot);


close(input);close(output);

end.