-
코드
stack = [] def count(i): if i == 0: if len(stack) >= 1: stack.pop(-1) else: stack.append(i) return k = int(input()) num_list = list(int(input()) for i in range(k)) for i in num_list: count(i) print(sum(stack))
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 4949번 균형잡힌 세상 (파이썬) (0) 2021.12.28 [백준] 9012번 괄호 (파이썬) (0) 2021.12.28 [백준] 10828번 스택 (파이썬) (0) 2021.12.27 [백준] 1181번 단어 정렬 (파이썬) (0) 2021.12.27 [백준] 2750번 수 정렬하기 (파이썬) (0) 2021.12.27