시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB46242259.459%

문제

Terry is feeling tired and he suspects it is because of a lack of sleep. He created a device that records his sleeping pattern over a period of time measured in seconds.

Assuming that the recorded sleeping pattern keeps repeating, help Terry by letting him know how often he is tired during each of the repeating time periods.

More precisely, for integers p and d, we say that Terry is tired at second i if from second i − p + 1 to second i (inclusive) he has slept for less than d seconds.

입력

The first line of input contains three integers n (1 ≤ n ≤ 86 400), the length of Terry’s sleep pattern, p (1 ≤ p ≤ N), and D (1 ≤ d ≤ p) as described above.

The second line of input contains a single string of length n which describes the period of time that is recorded. The ith such character is a W if Terry is awake at the ith second, or is a Z if Terry is asleep at the ith second.

출력

Display a single integer which represents the number of seconds that Terry is tired during each of the repeating time periods.

예제 입력 1

2 1 1
WZ

예제 출력 1

1

예제 입력 2

5 3 2
WZWWZ

예제 출력 2

4