相遇在天涯

Time Limit
1s
Memory Limit
131072KB
Judge Program
Standard
Ratio(Solve/Submit)
33.33%(2/6)
Description:

有两辆车a,b相距n千米,b在a的右侧,并规定,向右为正方向,从时刻0开始,a,b分别以v1,v2(m/s)的速度行驶,问在时间t(s)内,两车能否相遇,若能则输出相遇的时刻(单位 s,保留两位小数),若不能则输出"NO"。

Input:

有多组测试数据,每组测试数据包括4个整数,分别为n,v1,v2,t。

Output:

输出如题目所述,每组一行。

Sample Input:
16 149 159 466
17 65 -105 444
Sample Output:
NO
100.00

Submit