-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13-Number_Line_Jumps.py
54 lines (42 loc) · 1.32 KB
/
13-Number_Line_Jumps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 22 2023
@author Carlos Páez
"""
#
# Complete the 'kangaroo' function below.
#
# The function is expected to return a STRING.
# The function accepts following parameters:
# 1. INTEGER x1
# 2. INTEGER v1
# 3. INTEGER x2
# 4. INTEGER v2
#
def kangaroo(x1, v1, x2, v2) -> str:
"""
If the kangaroos are not moving at the same speed, and the distance between them is a multiple
of the difference in their speeds, then they will meet.
:param x1: starting position for kangaroo 1
:param v1: Kangaroo 1's jump distance
:param x2: starting position of kangaroo 2
:param v2: the speed of the second kangaroo
:return: a string.
"""
max_limit = 10000
if not (0 <= x1 < x2 <= max_limit) or not (1 <= v1 <= max_limit) or not (1 <= v2 <= max_limit):
return 'NO'
if x1 < x2 and v1 < v2:
return 'NO'
else:
return 'YES' if v1 != v2 and (x2 - x1) % (v2 - v1) == 0 else 'NO'
if __name__ == '__main__':
fptr = open('./output.txt', 'w')
first_multiple_input = input().rstrip().split()
x1 = int(first_multiple_input[0])
v1 = int(first_multiple_input[1])
x2 = int(first_multiple_input[2])
v2 = int(first_multiple_input[3])
result = kangaroo(x1, v1, x2, v2)
fptr.write(result + '\n')
fptr.close()