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
#include<bits/stdc++.h>
using namespace std;

int n, x, wynik, punkty, okres;
bool test, testy[105];
char TN;

int main(){
    cin>>n;
    okres=n/10;
    for(int i=1; i<=n; i++){
        cin>>TN;
        if(TN=='T') testy[i]=1;
        else testy[i]=0;
    }
    for(int i=1; i<=n; i++){
        test=testy[i];
        if(!test){
            //cout<<i<<" ";
            i=ceil((double)i/okres)*okres;
            //cout<<i<<"\n";
            continue;
        }
        if(i%okres==0) wynik++;
    }
    cout<<wynik;
}