比赛 water 评测结果 AAAAAAAAAA
题目名称 津津的储蓄计划 最终得分 100
用户昵称 梦那边的美好ET 运行时间 0.002 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2018-08-04 20:41:12
显示代码纯文本
#include<iostream>  
#include<cstdio>
#include<cmath>
#include<cctype>  
#include<cstring>  
#include<algorithm> 
using namespace std;
int a,b,c=0;
int main()
{ 
	freopen("save.in","r",stdin);        
    freopen("save.out","w",stdout);      
    for(int i=1;i<=12;i++)
    {
    	cin>>a;
        b+=300;
		b-=a;
		if(b<0)
		{
		    cout<<"-"<<i;
			break;
		}
		else
		{
		    c+=b/100;
			b=b%100;
		}
    }
	if(b>=0)
	{
	    cout<<c*120+b;
	}
    return 0;
}