比赛 啦啦啦,一星期两次的水题赛 评测结果 AAAAA
题目名称 自由落体 最终得分 100
用户昵称 ☪Repentance soul 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-10-28 18:32:21
显示代码纯文本
#include<iostream>
#include<cmath>
#include<cstdio>
using namespace std;
double H,S,V,L,K,n;
int sum=0;
double nTimeend,nTimefront,nXend,nXfront;
int main()
{
		freopen("freefaller.in","r",stdin);
	freopen("freefaller.out","w",stdout);
	//根据小车在小球落地后走的距离与各个小球的距离判断
	//而不采用高度判断。。。(撞上的结果)
	cin>>H>>S>>V>>L>>K>>n;

	nTimefront=sqrt(2*(H-K)/10);

	nXfront=S-V*nTimefront;

	nXend=nXfront+L;

	nTimeend=sqrt(2*H/10);

	nXfront=S-V*nTimeend;

	for (int i=0;i<n;i++)
	{
		if (i>=nXfront-0.00001&&i<=nXend+0.00001)
		{
			sum++;
		}
	}

	cout<<sum;

}