#include <bits/stdc++.h> using namespace std; long long n,w,p,l; string s; int main(){ cin.tie(0); ios_base::sync_with_stdio(false); cout.tie(0); cin>>n; cin>>s; for(int i=0; i<10; i++){ p=0; l=1; while(p<n/10 && l==1){ if(s[p+(i*(n/10))]=='T')l=1; else l=0; p++; } if(p==(n/10) && l==1)w++; } cout<<w; }
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 | #include <bits/stdc++.h> using namespace std; long long n,w,p,l; string s; int main(){ cin.tie(0); ios_base::sync_with_stdio(false); cout.tie(0); cin>>n; cin>>s; for(int i=0; i<10; i++){ p=0; l=1; while(p<n/10 && l==1){ if(s[p+(i*(n/10))]=='T')l=1; else l=0; p++; } if(p==(n/10) && l==1)w++; } cout<<w; } |