记录编号 365819 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]津津的储蓄计划 最终得分 100
用户昵称 GravatarHeHe 是否通过 通过
代码语言 C++ 运行时间 0.005 s
提交时间 2017-01-21 20:29:54 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
//#define LOCAL 
int mom,now;
int yusuan;
int main()
{
#ifndef LOCAL 
	freopen("save.in","r",stdin);
	freopen("save.out","w",stdout);
#endif
	for(int i(1);i<=12;i++)
	{
		scanf("%d",&yusuan);
		now+=300;
		if(now<yusuan)
		{
			cout<<-i;
			return 0;
		}
		now-=yusuan;
		mom+=now/100;
		now%=100;
	}
	cout<<now+(mom*120);
	return 0;
}