반응형
https://www.acmicpc.net/problem/10828
import sys
ssr = sys.stdin.readline
n = int(ssr())
list = []
for i in range(n):
command = ssr().rstrip()
if command.find('push') != -1:
list.append(int(command[4:]))
elif command == 'pop':
if len(list) == 0:
print(-1)
else:
print(list.pop())
elif command == 'size':
print(len(list))
elif command == 'empty':
if len(list) == 0:
print(1)
else:
print(0)
elif command == 'top':
if len(list) == 0:
print(-1)
else:
print(list[len(list)-1])
아마 push 부분이 순간적으로 고민이 되셨던 분들이 있으시지 않을까 생각이 드는데요. 저는 슬라이싱을 통해서 구현했습니다. 처음에는 숫자가 한자리수만 올거라고 막연하게 생각하고 구현했다가 틀리길래 push 뒤로 오는 원소들만 int형으로 변환해서 사용했습니다.
반응형
'Problem Solving > BOJ' 카테고리의 다른 글
[BOJ][Python]백준 10866 풀이 (0) | 2021.12.29 |
---|---|
[BOJ][Python]백준 10845 풀이 (0) | 2021.12.29 |
[BOJ][Python]백준 10816번 풀이 (0) | 2021.12.28 |
[BOJ][Python]백준 9012번 풀이 (0) | 2021.12.25 |