#ABC123A. Five Antennas
Five Antennas
题目描述
In AtCoder city, there are five antennas standing in a straight line. They are called Antenna and from west to east, and their coordinates are and , respectively.
Two antennas can communicate directly if the distance between them is or less, and they cannot if the distance is greater than .
Determine if there exists a pair of antennas that cannot communicate directly.
Here, assume that the distance between two antennas at coordinates and () is .
在 AtCoder 城中,有五根天线矗立在一条直线上。自西向东依次为 和 ,坐标分别为 和 。
如果两根天线之间的距离小于或等于 ,则可以直接通信;如果距离大于 ,则不能直接通信。
请判断是否存在一对不能直接**通信的天线。
这里假设坐标 和 ( )处的两根天线之间的距离为 。
输入格式
输入内容按以下格式标准输入:
输出格式
如果存在一对无法直接通信的天线,则打印 :(
;如果不存在这样一对天线,则打印 Yay!
。
样例 #1
样例输入 #1
1
2
4
8
9
15
样例输出 #1
Yay!
样例 #2
样例输入 #2
15
18
26
35
36
18
样例输出 #2
:(
说明
数据规模与约定
- 和 是介于 和 (含)之间的整数。
样例 解释
在这种情况下,没有一对天线不能直接通信,因为
- 和 之间的距离是 =
- 和 之间的距离是 =
- 与 之间的距离是 =
- 与 之间的距离是 =
- 与 之间的距离是 =
- 和 之间的距离是 =
- 与 之间的距离是 =
- 与 之间的距离是 =
- 与 之间的距离是 =
- 和 之间的距离是 =
它们都不大于 。因此,正确的输出是 "Yay!"。
样例 解释
在本例中,天线 和 之间的距离为 = ,超过了 ,因此无法直接通信。因此,正确的输出是 :(
.