← Back to List

28295번: 체육은 코딩과목 입니다 ↗

Solutions

Python 3
76 B | 76 chars
d = 0

for i in range(10):
    d = (d + int(input())) % 4

print("NESW"[d])