728x90
백준 알고리즘 문제풀이 입니다.
test_case_count = input()
for i in range(int(test_case_count)):
ox_result = input()
# string to list
ox_result = list(ox_result)
point = 0
points = list()
for i in ox_result:
if i == 'O':
point += 1
points.append(point)
else:
point = 0
print(sum(points))
728x90
'Development > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 15596번 문제 풀이 (0) | 2021.03.18 |
---|---|
[Algorithm] 백준 4344번 문제 풀이 (0) | 2021.03.17 |
[Algorithm] 백준 1546번 문제풀이 (0) | 2021.03.15 |
[Algorithm] 백준 3052번 문제풀이 (0) | 2021.03.14 |
[Algorithm] 백준 2577번 문제풀이 (0) | 2021.03.05 |