Files
CodingGame/Python/Easy_Challenges/power_of_thor_1.py
2022-03-13 19:40:00 +01:00

28 lines
816 B
Python

# light_x: the X position of the light of power
# light_y: the Y position of the light of power
# initial_tx: Thor's starting X position
# initial_ty: Thor's starting Y position
light_x, light_y, initial_tx, initial_ty = [int(i) for i in input().split()]
# game loop
while True:
remaining_turns = int(input()) # The remaining amount of turns Thor can move. Do not remove this line.
result = ""
if (initial_ty > light_y):
result += "N"
initial_ty -= 1
elif (initial_ty < light_y):
result += "S"
initial_ty += 1
if (initial_tx > light_x):
result += "W"
initial_tx += 1
elif (initial_tx < light_x):
result += "E"
initial_tx -= 1
# A single line providing the move to be made: N NE E SE S SW W or NW
print(result)