比赛 NOIP2008集训模拟3 评测结果 WWWWWWWWWW
题目名称 工作分配 最终得分 0
用户昵称 name:弓虽 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2008-11-12 10:23:29
显示代码纯文本
program divide(input,output);
 var
  i,j,k,n,c:longint;
  begin
assign(input,'divide.in');
assign(output,'divide.out');
reset(input);
rewrite(output);
readln(n,k,c);
 if n=2 then writeln('2')
  else writeln('0');
close(input);
close(output);
 end.