比赛 20101118 评测结果 AAATTTTTTT
题目名称 最终得分 30
用户昵称 nick09 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-18 10:23:44
显示代码纯文本
var
 n,i,j,k,a,b,tot:longint;
 d:array[0..16]of longint;
 fg:boolean;
begin
assign(input,'eight.in');reset(input);
assign(output,'eight.out');rewrite(output);
readln(n);
for i:=1 to n do read(d[i]);
readln(a,b);
{for i:=1 to n-1 do
 for j:=i+1 to n do
   if d[i]>d[j] then
    begin k:=d[i];d[i]:=d[j];d[j]:=d[i]; end; }
tot:=0;

for i:=a to b do
  begin
  fg:=true;
  if i mod 8<>0 then fg:=false;
  if fg then
   for j:=1 to n do
     if (i mod d[j]=0)
          then begin fg:=false;break;end;
  if fg then inc(tot);
  end;

writeln(tot);
close(input);close(output);
end.