比赛 咲 -Saki- 互测赛 评测结果 AAAAAAAAAA
题目名称 我的天凤不可能这么简单 最终得分 100
用户昵称 超级腻害的小蝶子 运行时间 0.508 s
代码语言 Pascal 内存使用 3.98 MiB
提交时间 2012-11-07 19:24:30
显示代码纯文本
program tenhous;
var m,n:longint;
    a:array[1..1000000]of longint;

procedure init;
var i:longint;
begin
   assign(input,'tenhous.in');
   assign(output,'tenhous.out');
   reset(input);
   rewrite(output);

   readln(n,m);
   for i:= 1 to n do
   read(a[i]);
end;

procedure work;
var i,lv,lc:longint;
begin
   lv:=0;
   lc:=0;
   for i:= 1 to n do
   begin
      lc:=lc div 2;
      inc(lc,a[i]);
      if lc>=m then
      begin
         inc(lv);
         dec(lc,m);
      end;
   end;
   writeln(lv);
   writeln(lc)
end;

begin
   init;
   work;
end.