比赛 20101119 评测结果 AWAWWWWWWW
题目名称 求和 最终得分 20
用户昵称 sr-end 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-19 10:45:41
显示代码纯文本
program aa;
var
i,j:longint;
a,b,c,l,n,k,p:longint;
f,f1:text;
begin
c:=1000000;
 assign(f,'suma.in');assign(f1,'suma.out');
 reset(f);rewrite(f1);
 readln(f,n,k,p);
 for i:=1 to n do
 begin
 readln(f,a);
  b:=a+b;
  l:=b mod p;
  if l=k then begin write(f1,k); close(f);close(f1);halt;end;
if (l<c) and(l>k)then c:=l;
end;
write(f1,c);
close(f);close(f1);
end.