比赛 HAOI2009 模拟试题3 评测结果 AWWWWWWWAW
题目名称 诸侯安置 最终得分 20
用户昵称 苏轼 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-04-23 11:29:34
显示代码纯文本
{
time:2009.4.23
rp++
}
program cch(input,output);
var
 n,k:longint;
begin
 assign(input,'empire.in');
 assign(output,'empire.out');
 reset(input);
 rewrite(output);
 readln(n,k);
 if n=1 then writeln(0)
  else
   if k>2*n then writeln(0)
     else writeln(4);
 close(input);
 close(output);
end.