https://www.acmicpc.net/problem/4949
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
while True:
w = input()
alpha = "abcdefghijklmnopqrstuvwxyz. "
if w == ".":
exit(0)
w = w.lower()
for i in alpha:
w = w.replace(i, "")
for j in w:
w = w.replace("()", "")
w = w.replace("[]", "")
if len(w) > 0:
print("no")
else:
print("yes")
|
cs |
'백준' 카테고리의 다른 글
백준 14891번: 톱니바퀴 (0) | 2021.07.02 |
---|---|
백준 14500번: 테트로미노 (0) | 2021.07.02 |
백준 11866번: 요세푸스 문제 0 (0) | 2021.06.27 |
백준 4963번: 섬의 개수 (0) | 2021.05.20 |
백준 1012번: 유기농 배추 (0) | 2021.05.20 |