반응형
문제 정보
제출 코드
count = int(input())
for i in range(count):
n = input()
total = 0
score = 0
for s in n:
if(s=="X"):
score = 0
else:
score += 1
total += score
print(total)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 15596번 Python (0) | 2021.10.03 |
---|---|
[백준 알고리즘] 4344번 Python (0) | 2021.10.03 |
[백준 알고리즘] 1546번 Python (0) | 2021.10.03 |
[백준 알고리즘] 3052번 Python (0) | 2021.10.03 |
[백준 알고리즘] 2577번 Python (0) | 2021.10.03 |
댓글