比赛 小练习赛:B组 评测结果 AAAAA
题目名称 自由落体 最终得分 100
用户昵称 乌龙猹 运行时间 0.007 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-10-21 19:18:15
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
double h,s1,v,L,k,n,x,l,ll;
int sum=0;
int main()
{
	freopen("freefaller.in","r",stdin);
	freopen("freefaller.out","w",stdout);
	ios::sync_with_stdio(false);
	cin>>h>>s1>>v>>L>>k>>n;
	double t=sqrt((h-k)/5);
	x=v*t;
	ll=s1-x+L+0.00001;//右边界;
	t=sqrt(h/5);
	x=v*t;
	l=s1-x-0.00001;//左边界;
	for(int i=0;i<n;i++)
	{
		if(i>=l&&i<=ll) sum++;
	}
	cout<<sum;
	return 0;
}