记录编号 19624 评测结果 AAAAAAAAAA
题目名称 核电站问题 最终得分 100
用户昵称 Gravatarreamb 是否通过 通过
代码语言 Pascal 运行时间 0.000 s
提交时间 2010-10-13 19:40:51 内存使用 0.11 MiB
显示代码纯文本
program hedianzhanwenti;
var
  f:array[1..50,0..5]of int64;
  i,j,k,n,m:longint;
  sum:int64;
begin
  assign (input,'nucle.in');
  reset (input);
  assign (output,'nucle.out');
  rewrite (output);
    readln (n,m);
    f[1,0]:=1;
    f[1,1]:=1;
    for i:=2 to n do
    begin
      for j:=0 to m-1 do
        f[i,0]:=f[i,0]+f[i-1,j];
      for j:=1 to m-1 do
        if i-j>=0 then
          f[i,j]:=f[i-1,j-1]
    end;
    for i:=0 to m-1 do
      sum:=sum+f[n,i];
    writeln (sum);
  close (input);
  close (output)
end.