记录编号 133788 评测结果 AAAAA
题目名称 [NOIP 2002]自由落体 最终得分 100
用户昵称 Gravatar岳帛翰 是否通过 通过
代码语言 C++ 运行时间 0.018 s
提交时间 2014-10-28 20:27:34 内存使用 0.25 MiB
显示代码纯文本
#include<iostream>
#include<cmath>
#include<cstdio>
#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)/g);
	double t2=sqrt(2*(h)/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;
}