Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode
- pytorch
- GCP
- NLP
- pep8
- Kaggle
- rnn
- FDS
- python
- 코딩테스트
- 완전탐색
- Kubernetes
- GitHub Action
- datascience
- torchserve
- 알고리즘
- vscode
- PytorchLightning
- 네이버AItech
- docker
- autoencoder
- FastAPI
- NaverAItech
- DeepLearning
- github
- 프로그래머스
- Matplotlib
- 백준
- GIT
- wandb
Archives
- Today
- Total
Sangmun
백준 9935번 문자열 폭발 본문
https://www.acmicpc.net/problem/9935
stack을 활용한 문제이다.
그냥 외워도둬 굉장히 괜찮을 문제이다.
import sys
input = sys.stdin.readline
string = str(input().strip())
bomb = str(input().strip())
lastChar = bomb[-1]
stack = []
length = len(bomb)
for char in string:
stack.append(char)
if char == lastChar and ''.join(stack[-length:]) == bomb:
del stack[-length:]
answer = ''.join(stack)
if answer == '':
print("FRULA")
else:
print(answer)
'알고리즘 > 백준' 카테고리의 다른 글
백준 11057 오르막 수 (0) | 2022.12.22 |
---|---|
백준 11052번 카드 구매하기 파이썬 (0) | 2022.12.21 |
백준 17144번 미세먼지 안녕! (0) | 2022.12.14 |
백준 12851번 숨바꼭질2 (0) | 2022.12.14 |
백준 2096번 내려가기 (0) | 2022.12.12 |
Comments