记录编号 367330 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]津津的储蓄计划 最终得分 100
用户昵称 Gravatar据说这是zzy 是否通过 通过
代码语言 C++ 运行时间 0.004 s
提交时间 2017-01-29 23:47:22 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cmath>
#include<cstdio>
using namespace std;
int main()
{
	freopen("save.in","r",stdin);
	freopen("save.out","w",stdout);
	int a[100],m=0,s=0;
	for(int i=1;i<=12;i++)
		cin>>a[i];
	for(int j=1;j<=12;j++)
	{
		s=s+300;
		if(s-a[j]<0)
		{
			cout<<-j;
			return 0;
		}
		if(s-a[j]>=0)		
		{   m=(s-a[j])/100+m;
			s=(s-a[j])%100;
		}
	}
			s=s+m*120;
			cout<<s;

return 0;
}