n = int(input())
for i in range(n):
a = input()
s = 0
total = 0
for j in a:
if j == 'O':
s += 1
else:
s = 0
total += s
print(total)
'코딩테스트 > 백준' 카테고리의 다른 글
백준 2675번 문자열 반복 python 파이썬 (0) | 2022.10.07 |
---|---|
백준 1152번 단어의 개수 python 파이썬 (0) | 2022.10.07 |
백준 11720번 숫자의 합 python 파이썬 (0) | 2022.10.07 |
백준 11650번 좌표 정렬하기 python 파이썬 (0) | 2022.10.07 |
백준 1427번 소트인사이드 python 파이썬 (0) | 2022.10.07 |