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