728x90
반응형
구현 & 스택 문제이다. 문제가 상당히 깜찍하다.
from collections import deque
_ = input()
stack = deque()
while 1:
s = input()
if s == "고무오리 디버깅 끝":
break
if s == "문제":
stack.append(1)
elif stack and s == "고무오리":
stack.pop()
else:
stack.append(1); stack.append(1)
print("고무오리야 사랑해" if not stack else "힝구")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5430번 AC(python) (0) | 2021.03.07 |
---|---|
백준 알고리즘 17298번 오큰수(python) (0) | 2021.03.07 |
백준 알고리즘 17952번 과제는 끝나지 않아!(python) (0) | 2021.03.06 |
백준 알고리즘 12605번 단어순서 뒤집기(python) (0) | 2021.03.06 |
백준 알고리즘 20301번 반전 요세푸스(python) (0) | 2021.03.06 |