#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
int wynik=0;
int pom=0;
char s;
for(int i=0; i<10; i++){
for(int i=0; i<n/10; i++){
cin>>s;
if(s=='T'){
pom++;
}
}
if(pom==n/10){
wynik++;
}
pom=0;
}
cout<<wynik;
}
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 main(){ int n; cin>>n; int wynik=0; int pom=0; char s; for(int i=0; i<10; i++){ for(int i=0; i<n/10; i++){ cin>>s; if(s=='T'){ pom++; } } if(pom==n/10){ wynik++; } pom=0; } cout<<wynik; } |
English