백준 자료구조 1 스택 10828

윤재승·2023년 2월 5일
1

백준

목록 보기
2/2
post-thumbnail
post-custom-banner

https://www.acmicpc.net/problem/10828

문제

정수를 저장하는 스택을 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.

명령은 총 다섯 가지이다.

push X: 정수 X를 스택에 넣는 연산이다.
pop: 스택에서 가장 위에 있는 정수를 빼고, 그 수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다.
size: 스택에 들어있는 정수의 개수를 출력한다.
empty: 스택이 비어있으면 1, 아니면 0을 출력한다.
top: 스택의 가장 위에 있는 정수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다.

내제출

from sys import stdin

number = int(stdin.readline())
stack = []

for i in range(number):

  func_list = stdin.readline().split()

  if func_list[0] == 'push':
    stack.append(func_list[1])

  elif func_list[0] == 'top':
    if stack:
      print(stack[-1])
    else:
      print(-1)
  elif func_list[0] == 'size':
    print(len(stack))
  elif func_list[0] == 'empty':
    if not stack:
      print(1)
    else:
      print(0)
  elif func_list[0] == 'pop':
    if stack:
      print(stack[-1])
      stack = stack[:-1]
    else:
      print(-1)

What I learned

number = int(input())
for i in range(number):
	...

다음과 같이 했을때 run time error 가 출력되었다.

Input을 이렇게 사용하지 말고 앞으로는

from sys import stdin
number = int(stdin.readline())

이렇게 활용하도록 하자

profile
새로운도전
post-custom-banner

0개의 댓글