比赛 Mister B的奇妙生活 评测结果 AAAAAAAAAA
题目名称 B先生和阅读 最终得分 100
用户昵称 Aeons 运行时间 0.003 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-09-08 20:08:48
显示代码纯文本
#include <fstream>
using namespace std;
ifstream fin("MrBA.in");
ofstream fout("MrBA.out");
int main()
{
	int c,v0,v1,p,a;
	fin>>c>>v0>>v1>>a>>p;
	int ans=0;
	int n=0;
	int k=1;
	int v=v0;
	while(c>0)
	{
		ans++;
		c+=n;
		n=p;
		c-=v0;
		v0=(v0+a>v1)?v1:v0+a;
	}
	fout<<ans<<endl;
	fin.close();
	fout.close();
	return 0;
}