[Python] 백준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를 구현했습니다.