-Code
holes_word = {'A': 1, 'B': 2, 'D': 1, 'O': 1, 'P': 1,
'Q': 1, "R": 1, }
for _ in range(int(input())):
s = input()
res = 0
for w in s:
if w in holes_word:
res += holes_word[w]
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 27522번 카트라이더: 드리프트 (0) | 2023.06.11 |
---|---|
[백준/파이썬] 14409번 Tuna (0) | 2023.06.10 |
[백준/파이썬] 4581번 Voting (0) | 2023.06.08 |
[백준/파이썬] 12517번 Centauri Prime (Small1) (0) | 2023.06.07 |
[백준/파이썬] 15184번 Letter Count (0) | 2023.06.06 |