본문 바로가기
백준문제/브론즈 5

백준) 28938번 - python

by kiseno 2024. 3. 5.
728x90
반응형
SMALL
n0= int(input())
n1 = map(int,input().split())
count = 0
for i in n1: count += i
if count > 0:print("Right")
elif count ==0: print("Stay")
else: print("Left")
728x90
반응형
LIST

'백준문제 > 브론즈 5' 카테고리의 다른 글

백준) 29863번 - python  (0) 2024.03.07
백준) 29699번 - python  (0) 2024.03.06
백준) 29163번 - python  (0) 2024.03.04
백준) 28927번 - python  (0) 2024.03.03
백준) 28701번 - python  (0) 2024.03.02