https://softeer.ai/practice/6279
import sys
n, k = list(map(int,sys.stdin.readline().split()))
data = list(sys.stdin.readline().rstrip())
answer = 0
for i in range(0,len(data)):
if data[i] == 'P':
for j in range(i-k,i+k+1):
if j<0 or j>=n:
continue
elif data[j] == 'H':
answer += 1
data[j] = '-'
break
print(answer)
[소프티어] 택배 마스터 광우 (0) | 2024.02.01 |
---|---|
Algorithm with python (1) | 2024.02.01 |
[소프티어] 우물 안 개구리 (1) | 2024.01.31 |
[소프티어] 지도 자동 구축 (0) | 2024.01.31 |
[소프티어] 강의실 배정 (0) | 2024.01.30 |