BOJ 8958. OX퀴즈 (Python)
2021. 2. 5. 23:29ㆍProblem Solving/BOJ
BOJ 8958. OX퀴즈
https://www.acmicpc.net/problem/8958
Solution
def get_score(case, score):
conti = 0
for s in case:
if s == 'O':
conti += 1
if s == 'X':
conti = 0
score += conti
return score
n = int(input())
for _ in range(0,n):
case = input()
print(get_score(case,0))
반응형
'Problem Solving > BOJ' 카테고리의 다른 글
BOJ 11729. 숫자의 합(Python) (0) | 2021.02.07 |
---|---|
BOJ 11654. 아스키 코드 (C, Python) (0) | 2021.02.06 |
BOJ 2920. 음계 (Python) (0) | 2021.02.05 |
BOJ 2639. 구구단 (Python) (0) | 2021.02.05 |
BOJ 2675. 문자열 반복 (Python) (0) | 2021.02.05 |