比赛 Mister B的奇妙生活 评测结果 AAAAAAAAAA
题目名称 B先生和阅读 最终得分 100
用户昵称 @@@ 运行时间 0.001 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-09-08 19:28:54
显示代码纯文本
#include <fstream>
#include <vector>
#include <stdlib.h>
#include <time.h>
using namespace std;
ifstream cin("MrBA.in");
ofstream cout("MrBA.out");
int  c,v0,v1,a,p;
int finish,day;
int cyf()
{	
	cin >> c >> v0 >> v1 >> a >> p;
	c -= v0;
	if(c <= 0)
	{
		cout << 1 << endl;
		cin.close();	
		cout.close();
		return 0;
	}
	//c+=p;
	for (day = 2;c > 0; ++day)
	{
		v0 = min(v0+a,v1);
		
		c -= v0;
		///if(c <= 0)
		//{
		//	break;
		//}
		c+=p;
		
		/* code */
	}
	cout << day-1  << endl;
	cin.close();	
	cout.close();
	return 0;
}
int hhhh = cyf();
int main() {;}