比赛 咲 -Saki- 互测赛 评测结果 AAAAAAAAAA
题目名称 我的天凤不可能这么简单 最终得分 100
用户昵称 Sweet 运行时间 0.607 s
代码语言 Pascal 内存使用 0.17 MiB
提交时间 2012-11-07 18:57:27
显示代码纯文本
var n,m,t,level,now:int64;
        i:longint;


begin
assign(input,'tenhous.in');
assign(output,'tenhous.out');
reset(input);
rewrite(output);


readln(n,m);

for i:=1 to n-1 do
	begin
	read(t);
	now:=now+t;
	if now>=m then
		begin
		now:=now-m;
		inc(level);
		end;
	now:=now shr 1;
	end;
read(t);
now:=now+t;
if now>=m then
	begin
	now:=now-m;
	inc(level);
	end;

writeln(level);
writeln(now);
	
close(input);
close(output);
	
end.