记录编号 419475 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]津津的储蓄计划 最终得分 100
用户昵称 GravatarMarshmello 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2017-07-02 19:22:03 内存使用 0.00 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int maxn=15;
int a[maxn],mon,last=0,sum=0,x=0;
int Main(){
	freopen("save.in","r",stdin);
	freopen("save.out","w",stdout);
	for(int i=0;i<12;i++){
		scanf("%d",&a[i]);
		mon=(last+300-a[i]);
		sum+=mon/100;
		last=mon%100;
		if((mon)<a[i+1]){
			x=1;
			printf("%d",-(i+1));
			break;
		}
	}
	if(x==0)printf("%d",sum*120+last);
}
int main(){;}
int Avicii=Main();