본문 바로가기
Study/알고리즘

[백준 알고리즘] 8958번 Python

by Becoming a Hacker 2021. 10. 3.
반응형

문제 정보

 

제출 코드

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)

댓글