일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- convert to shp
- plotly dash
- 백준
- 2164 카드2
- 괄호 문제
- flask
- Python
- geopandas
- python buildpacks
- 플라스크
- 알고리즘
- string to list
- 크롤링
- colab runtime
- NLP
- 혁신성장부문
- Selenium
- 웹페이지
- kmeans
- 해시태그
- 파이썬
- clustering
- 인스타그램
- 셀레니움
- Crawling
- Merge Repositories
- Chat-GPT
- to shp
- 코랩 런타임
- geoDataFrame
Archives
- Today
- Total
코딩코딩코딩
백준(BAEKJOON) 10828 스택 - 파이썬(python) 본문
보통 python stack을 구현하는 연습을 할 때 대부분 class 를 이용하여 구현하기 때문에 이 문제의 경우 처음에 어떻게 접근해야 하는지 헷갈렸음.
* input() 메서드를 사용할 경우 시간초과 되기 때문에 유의
sys.stdin 사용 방법
https://hansuho113.tistory.com/26 참고
import sys
stack = []
for i in range(int(sys.stdin.readline())):
order = sys.stdin.readline().split()
if order[0] == "push":
stack.append(order[1])
if order[0] == "pop":
if len(stack) == 0:
print(-1)
else:
print(stack.pop())
if order[0] == "size":
print(len(stack))
if order[0] == "empty":
if len(stack) == 0:
print(1)
else:
print(0)
if order[0] == "top":
if len(stack) == 0:
print(-1)
else:
print(stack[-1])
'파이썬 > Algorithms' 카테고리의 다른 글
백준(BAEKJOON) 1158 요세푸스 - 파이썬(python) (0) | 2021.12.31 |
---|---|
백준(BAEKJOON) 10773 제로 - 파이썬(python) (0) | 2021.12.27 |
파이썬 자료구조 힙_Python heaps (0) | 2021.11.16 |
python 아스키코드(ASCII) ord, chr (0) | 2021.11.02 |
백준(BAEKJOON) 2571 수 정렬하기 2 - 파이썬(python) (0) | 2021.10.20 |
Comments