728x90
반응형
test_case_cnt = int(input())
test_case_list = list()
for i in list(range(test_case_cnt)):
tmp_test_case = raw_input()
test_case_list.append(tmp_test_case)
for test_case in test_case_list:
total = 0
tmp_score = 0
for index in test_case:
if index == "X":
tmp_score = 0
else:
tmp_score += 1
total += tmp_score
print total
728x90
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 평균 점수 (10039 문제) Python 2 답안 (0) | 2019.01.17 |
---|---|
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 음계 (2920 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 숫자의 개수 (2577 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 단어의 개수 (1152 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 4단계 if문 사용해보기 - 평균은 넘겠지 (4344 문제) Python 2 답안 (0) | 2019.01.16 |