-
Notifications
You must be signed in to change notification settings - Fork 305
/
Copy pathKangaroo.py
44 lines (33 loc) · 809 Bytes
/
Kangaroo.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
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the kangaroo function below.
def kangaroo(x1, v1, x2, v2):
while(True):
if(v1>v2 and x1<x2):
if(x1+v1==x2+v2):
return 'YES'
else:
x1+=v1
x2+=v2
elif(v2>v1 and x2<x1):
if(x1+v1==x2+v2):
return 'YES'
else:
x1+=v1
x2+=v2
else:
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()