比赛 NOIP2008集训模拟1 评测结果 WWWWWWWAWW
题目名称 地铁重组 最终得分 10
用户昵称 E.M.B.E.R 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2008-11-10 10:17:07
显示代码纯文本
program EmberAsh;
var
a:array[1..100000]of longint;
n,t,i,j,x,temp:longint;
fin,fout:text;

BEGIN
assign(fin,'subway.in');reset(fin);
assign(fout,'subway.out');rewrite(fout);
writeln(fout,1);
close(fin);close(fout);
END.