#include <bits/stdc++.h> using namespace std; int main() { int n, l=0, k, s=0; string c; cin>>n>>c; k=n/10; for(int i=0;i<n;i++){ if(c[i]=='T'){ l++; }else{ i=i-i%k+k-1; l=0; } if(l==k){ s++;l=0; } } cout<<s; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <bits/stdc++.h> using namespace std; int main() { int n, l=0, k, s=0; string c; cin>>n>>c; k=n/10; for(int i=0;i<n;i++){ if(c[i]=='T'){ l++; }else{ i=i-i%k+k-1; l=0; } if(l==k){ s++;l=0; } } cout<<s; return 0; } |