A. Save Luke
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Luke Skywalker got locked up in a rubbish shredder between two presses. R2D2 is already working on his rescue, but Luke needs to stay alive as long as possible. For simplicity we will assume that everything happens on a straight line, the presses are initially at coordinates 0 and L, and they move towards each other with speed v1 and v2, respectively. Luke has width d and is able to choose any position between the presses. Luke dies as soon as the distance between the presses is less than his width. Your task is to determine for how long Luke can stay alive.

Input

The first line of the input contains four integers d, L, v1, v2 (1 ≤ d, L, v1, v2 ≤ 10 000, d < L) — Luke's width, the initial position of the second press and the speed of the first and second presses, respectively.

Output

Print a single real value — the maximum period of time Luke can stay alive for. Your answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

Namely: let's assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if .

Sample test(s)
Input
2 6 2 2
Output
1.00000000000000000000
Input
1 9 1 2
Output
2.66666666666666650000
Note

In the first sample Luke should stay exactly in the middle of the segment, that is at coordinates [2;4], as the presses move with the same speed.

In the second sample he needs to occupy the position . In this case both presses move to his edges at the same time

题意:L长 两人分别从0,L点出发以速度v1,v2  当距离小于等于d时停止

#include<bits/stdc++.h>
using namespace std;
double d,l,v1,v2;
int main()
{
scanf("%lf%lf%lf%lf",&d,&l,&v1,&v2);
printf("%lf\n",(l-d)/(v1+v2));
return 0;
}

  

最新文章

  1. 关于SAP日期操作的几个函数
  2. CPU阿甘
  3. windows 我的电脑右键 无法打开管理窗口
  4. Android 使用PullToRefresh实现下拉刷新和上拉加载(ExpandableListView)
  5. 关于BIOS的一点东西
  6. HBase应用场景
  7. Swift中的问号?和感叹号!
  8. Js操作Select大全(取值、设置选中)
  9. 高可用集群(HA)之Keeplived原理+配置过程
  10. Lucence.net索引技术 一
  11. Blink: Chromium的新渲染引擎
  12. 中小学Python编程语言教学
  13. 新手如何理解JS面向对象开发?
  14. linux下用户操作
  15. Hbase获取流程
  16. LOJ6432 [PKUSC2018] 真实排名 【组合数】
  17. TTL是什么意思?
  18. Swift5 语言指南(四) 基础知识
  19. 微信小程序Map组件踩坑日记
  20. 第三周结对项目--小学生四则运算CAI软件汇报及总结(UI/web)

热门文章

  1. 孤荷凌寒自学python第七十八天开始写Python的第一个爬虫8
  2. dotnetframe的清理工具
  3. OSS文件上传及OSS与ODPS之间数据连通
  4. KVM嵌套虚拟化
  5. 函数重载(overload)和函数重写(override)
  6. Linux内核设计笔记14——块I/O层
  7. c# html 导出excel
  8. 图的遍历——DFS(邻接矩阵)
  9. iOS奔溃日志信息统计使用笔记
  10. lol人物模型提取(九)——终章