-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kangaro.py
41 lines (28 loc) · 934 Bytes
/
Kangaro.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
#Kangaro problem in hackerrank
#Complete the function kangaroo in the editor below. It should return YES if they reach the same position at the same time, or NO if they don't.
#kangaroo has the following parameter(s):
# x1, v1: integers, starting position and jump distance for kangaroo 1
# x2, v2: integers, starting position and jump distance for kangaroo 2
import math
import os
import random
import re
import sys
# Complete the kangaroo function below.
def kangaroo(x1, v1, x2, v2):
for i in range(10000):
if((x1+v1)==(x2+v2)):
return "YES"
x1 += v1
x2 += v2
return "NO"
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
x1V1X2V2 = input().split()
x1 = int(x1V1X2V2[0])
v1 = int(x1V1X2V2[1])
x2 = int(x1V1X2V2[2])
v2 = int(x1V1X2V2[3])
result = kangaroo(x1, v1, x2, v2)
fptr.write(result + '\n')
fptr.close()