#include <bits/stdc++.h> using namespace std; int n; string s; long long wynik; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>s; int x = n/10; for(int i = 0; i < n; i++){ if(i%x == 0){ int pom = 0; for(int j = i; j < i+x; j++) if(s[j] =='T') pom++; if(pom == x) wynik++; } } cout<<wynik<<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 | #include <bits/stdc++.h> using namespace std; int n; string s; long long wynik; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>s; int x = n/10; for(int i = 0; i < n; i++){ if(i%x == 0){ int pom = 0; for(int j = i; j < i+x; j++) if(s[j] =='T') pom++; if(pom == x) wynik++; } } cout<<wynik<<endl; return 0; } |