[Python] BOJ 4949번. 균형잡힌 세상 작성일 2020-05-14 | In Algorithm | 4949번. 균형잡힌 세상 문제 링크 https://www.acmicpc.net/problem/4949 풀이 코드 12345678910111213141516171819202122232425262728293031# 4949번. 균형잡힌 세상 import sys input = sys.stdin.readline while True: sList = input().rstrip() if sList == '.': break stack = [] f = True for s in sList: if s == '(' or s == '[': stack.append(s) elif s == ')': if stack and stack[-1] == '(': stack.pop() else: f = False break elif s == ']': if stack and stack[-1] == '[': stack.pop() else: f = False break if not stack and f == True: print('yes') else: print('no') 비고