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
#include<iostream>
#include<string>


using namespace std;

int main() {
	int n;// liczba testów
	cin >> n;
	int O = 0;//liczba zaliczonych grup
	int H = n/10;// liczba testów w grupie
	int h = 0;// któryś test zaliczony z kolei
	string testy;
	cin >> testy;
	for(int i = 0; i < n; i++) {
		if (testy[i] == 'T' and (i-h)%H==0) {
			h++;
			if (h == H) {
				O++;
				h = 0;
			}
		}
		if (testy[i] == 'N') {
			h = 0;
		}
	}
	cout << O;
}