https://www.codetree.ai/missions/5/problems/text-based-commands2/description
import sys
input = sys.stdin.readline
# N, E, S, W
dx = [0, 1, 0, -1]
dy = [1, 0, -1, 0]
nx = 0
ny = 0
nd = 0
order = list(input().rstrip())
for o in order:
if o == 'L':
nd = (nd+3)%4
elif o == 'R':
nd = (nd+1)%4
else:
nx = nx + dx[nd]
ny = ny + dy[nd]
print(nx, ny)
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 작은 구슬의 이동 Python (0) | 2024.07.29 |
---|---|
[Codetree] 1이 3개 이상 있는 위치 Python (0) | 2024.07.29 |
[Codetree] 방향에 맞춰 이동 Python (0) | 2024.07.29 |
[Codetree] 1차원 젠가 Python (0) | 2024.07.28 |
[Codetree] 삼각형 컨베이어 벨트 Python (0) | 2024.07.27 |