[알고리즘] (구름level) 스택
문제
(구름level) 스택
Python 풀이
a = int(input()) # 횟수
b = [] # 백업
for i in range(a):
s = int(input()) # 선택
if s == 0:
if len(b) < 10:
n = int(input()) # 입력
b.append(n)
else:
print('overflow')
elif s == 1:
if len(b) > 0:
b.pop(-1)
else:
print('underflow')
else:
break
for j in b:
print(j, end=' ')
Author And Source
이 문제에 관하여([알고리즘] (구름level) 스택), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yongchan_0312/구름level-스택저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)