티스토리 뷰
https://www.acmicpc.net/problem/8958
import sys
N = int(sys.stdin.readline())
for i in range(N):
s = list(str(sys.stdin.readline()))
cnt = 0
score = 0
for i in range(len(s)):
if s[i] == 'O':
cnt += 1
score += cnt
else:
cnt = 0
print(score)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 4673 : 셀프 넘버 - Python (0) | 2020.03.26 |
---|---|
[백준] 4344 : 평균은 넘겠지 - Python (0) | 2020.03.25 |
[백준] 2606 : 바이러스 - Python (0) | 2020.03.20 |
[백준] 1260 : DFS와 BFS - Python (0) | 2020.03.20 |
[백준] 15486 : 퇴사 2 - Python (0) | 2020.03.14 |