比赛 [不是Rapiz出的]农场主钦定NOIP模拟赛1 评测结果 AAATTTTTTT
题目名称 Color the Axis 最终得分 30
用户昵称 Ten.X 运行时间 7.076 s
代码语言 Pascal 内存使用 0.35 MiB
提交时间 2016-11-08 18:32:23
显示代码纯文本
var f:array[1..200100]of boolean;
    l,r,n,m,i,j,tot:longint;
begin
assign(input,'axis.in');reset(input);
assign(output,'axis.out');rewrite(output);
read(n,m);
fillchar(f,sizeof(f),true);
for i:=1 to m do
begin
tot:=0;
read(l,r);
for j:=l to r do f[j]:=false;
for j:=1 to n do if f[j] then inc(tot);
writeln(tot);
end;
close(input);close(output);
end.