[Python] 백준5525 IOIOI

[Python] 백준5525 IOIOI

백준5525 IOIOI 링크

문제

문제

예제 입력

예제


코드

import sys

n = int(input())
m = int(input())
arr = sys.stdin.readline().strip()

i = 1
cnt = 0
ans = 0
while i < m - 1:
    if arr[i - 1] == 'I' and arr[i] == 'O' and arr[i + 1] == 'I':
        cnt += 1
        if cnt == n:
            ans += 1
            cnt -= 1
        i += 1
        
    else :
        cnt = 0
    i += 1

print(ans)

설명

파이썬을 통해서 사용자로부터 입력받아 자료형 list를 사용하여 문자열을 확인하는 것으로 IOIOI를 구현했습니다.


결과

결과


© 2022. All rights reserved. 신동민의 블로그