#include <iostream> using namespace std; int n,punktow; bool dodaj=true; string s; int main() { ios_base::sync_with_stdio(0); cin >> n >> s; for (int i=1 ; i<=n ; i++) { if (s[i-1]!='T') dodaj = false; if (i%(n/10)==0) { if (dodaj) punktow++; dodaj = true; } } cout << punktow << endl; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include <iostream> using namespace std; int n,punktow; bool dodaj=true; string s; int main() { ios_base::sync_with_stdio(0); cin >> n >> s; for (int i=1 ; i<=n ; i++) { if (s[i-1]!='T') dodaj = false; if (i%(n/10)==0) { if (dodaj) punktow++; dodaj = true; } } cout << punktow << endl; } |