#include <bits/stdc++.h> using namespace std; int n; int main() { scanf("%d",&n); char c; int odp=0; bool czd; for(int i=1;i<=10;++i) { czd=1; for(int j=1;j<=n/10;++j) { cin>>c; if(c!='T') czd=0; } odp+=czd; } cout<<odp; 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 | #include <bits/stdc++.h> using namespace std; int n; int main() { scanf("%d",&n); char c; int odp=0; bool czd; for(int i=1;i<=10;++i) { czd=1; for(int j=1;j<=n/10;++j) { cin>>c; if(c!='T') czd=0; } odp+=czd; } cout<<odp; return 0; } |