记录编号 172784 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]津津的储蓄计划 最终得分 100
用户昵称 Gravatar啊吧啦吧啦吧 是否通过 通过
代码语言 C++ 运行时间 0.009 s
提交时间 2015-07-27 06:23:12 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<fstream>

using namespace std;

main()
{
	ifstream fin("save.in");
	ofstream fout("save.out");
#define cin fin
#define cout fout
	ios::sync_with_stdio(false);
	int nm = 0, ys, cm = 0;
	for (int i = 1; i <= 12; ++ i){
		cin >> ys;
		nm += 300;
		if (ys > nm){
			cout << '-' << i;
			return 0;
		}
		nm -= ys;
		while (nm >= 100){
			nm -= 100;
			cm += 100;
		}
	}
	nm += cm * 6 / 5;
	cout << nm;
}