记录编号 308282 评测结果 AAAAAAAAAA
题目名称 [咲 -Saki-] 我的天凤不可能这么简单 最终得分 100
用户昵称 Gravataropen the window 是否通过 通过
代码语言 C++ 运行时间 0.877 s
提交时间 2016-09-17 13:31:43 内存使用 3.72 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
int a[1000001],ans,n,m,tot,i;
int main()
{
	freopen("tenhous.in","r",stdin);
	freopen("tenhous.out","w",stdout);
	scanf("%d%d",&n,&m);
	for (i=1; i<=n; ++i) scanf("%d",&a[i]);
	for (i=1; i<=n; ++i)
	{
		ans=ans/2+a[i];
		if (ans>=m) 
		{
			ans-=m;
			tot++;
		}
	}
	printf("%d\n%d\n",tot,ans);
	return 0;
}