比赛 小练习赛:B组 评测结果 AAWWW
题目名称 自由落体 最终得分 40
用户昵称 儘韾 运行时间 0.003 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-10-21 20:22:08
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
	freopen("freefaller.in","r",stdin);
	freopen("freefaller.out","w",stdout);
	double s1,v,l,h,k;
	int n;
	cin>>h>>s1>>v>>l>>k;
	cin>>n;
	double t1=sqrt(2*(h-k)/10),t2=sqrt(2*h/10);
	double x1=s1-t1*v-0.00001,x2=s1-v*t2+k+0.00001;
	int cnt=0;
	for(int i=1;i<=n;i++)
	{
		if(x1<=i&&i<=x2) cnt++;
	}
	cout<<cnt<<endl;
	return 0;
}