https://www.acmicpc.net/problem/20001
시간 1초, 메모리 512MB
input :
output :
현재 가지고 있는 문제의 개수를 기록하는 변수를 하나 두고.
변수가 0인 상태에서 "고무오리" 가 들어오면 이 값을 +2
그렇지 않다면 -1 해주자.
"문제"가 들어 왔다면 +1을 하도록 하자.
import sys
temp = sys.stdin.readline().strip()
ans = 0
while True:
temp = sys.stdin.readline().strip()
if temp == "고무오리 디버깅 끝":
break
if temp == "고무오리":
if ans == 0:
ans += 2
else:
ans -= 1
else:
ans += 1
print("고무오리야 사랑해" if ans == 0 else "힝구")