#include <iostream>
#include <string>
using namespace std;
int main(void) {
int n;
cin >> n;
string a;
cin >> a;
int liczba_testow = n / 10;
int pkt = 0;
for (int i = 0; i < n - liczba_testow + 1; i++) {
bool tmp = true;
for (int j = i; j < i + liczba_testow; j++) {
if (a[j] != 'T') {
tmp = false;
break;
}
}
if (tmp == true) {
pkt++;
}
}
cout << pkt << endl;
return 0;
}
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 | #include <iostream> #include <string> using namespace std; int main(void) { int n; cin >> n; string a; cin >> a; int liczba_testow = n / 10; int pkt = 0; for (int i = 0; i < n - liczba_testow + 1; i++) { bool tmp = true; for (int j = i; j < i + liczba_testow; j++) { if (a[j] != 'T') { tmp = false; break; } } if (tmp == true) { pkt++; } } cout << pkt << endl; return 0; } |
English