1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>

using namespace std;

int Liczenie_punktow(int n, string napis){
    int rozmiar_grupy = (n / 10), ilosc_punktow = 0, ilosc_True = 0;
    
    for(int i = 1; i <= napis.length(); i += 1){
        if(rozmiar_grupy == 1){
            ilosc_True = 0;
        }
        
        if(i % rozmiar_grupy == 1){
            ilosc_True = 0;
        }
        
        if(napis[i] == 'T'){
            ilosc_True += 1;
        }
        
        if(ilosc_True == rozmiar_grupy){
            ilosc_punktow += 1;
        }
    }
    
    return ilosc_punktow;
}

int main(){
    int n; cin >> n;
    
    string napis = "#", napis_1; cin >> napis_1;
    napis += napis_1;
    
    int ilosc_punktow = Liczenie_punktow(n, napis);
    
    cout << ilosc_punktow << '\n';
    
    return 0;
}