比赛 啦啦啦,一星期两次的水题赛 评测结果 C
题目名称 自由落体 最终得分 0
用户昵称 岳帛翰 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2014-10-28 19:59:21
显示代码纯文本
#include<iostream>
#include<cmath>

#define g 10
#define wucha 0.00001
using namespace std;

int main()
{
	freopen("freefaller.in","r",stdin);
	freopen("freefaller.out","w",stdout);
	double h,s,v,l,k,n;
	int sum=0;
	cin>>h>>s>>v>>l>>k>>n;
	double t1=sqrt(2*(h-k-wucha)/g);
	double t2=sqrt(2*(h+wucha)/g);
	double x1=s-v*t1+l+wucha;
	double x2=s-v*t2-wucha;
	for(int i=0;i<n;i++)
	{
		if(i>=x2&&i<=x1)	sum++;
	}
	cout<<sum<<endl;
	return 0;
}