[백준] #2857 FBI python
2023. 2. 21. 06:00
https://www.acmicpc.net/problem/2857
📕 설명 📕
"FBI" 문자열이 해당 주어진 문자열에 포함된다면 해당 번째를 result list에 넣고 아니라면 넣지 않는다.
result list의 길이가 0이라면 없는 것이므로 "HE GOT AWAY!"를 출력한다.
🧑🏻💻 나의 풀이 🧑🏻💻
result = []
for i in range(1,6):
S = input()
if "FBI" in S:
result.append(i)
if len(result) == 0:
print("HE GOT AWAY!")
else:
print(*result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2966 찍기 python (1) | 2023.02.23 |
---|---|
[백준] #2947 나무 조각 python (0) | 2023.02.22 |
[백준] #2846 오르막길 python (0) | 2023.02.20 |
[백준] #2484 주사위 네 개 python (0) | 2023.02.19 |
[백준] #2822 점수 계산 python (0) | 2023.02.18 |