#include <iostream> #include <fstream> using namespace std; int n; char c; int main() { scanf("%d", &n); n/=10; int p=0; for(int i=0; i<10; i++){ bool czyok=true; for(int j=0; j<n; j++) { scanf("%c", &c); while(c!='T' && c!='N') scanf("%c", &c); if(c=='N') czyok=false; } p+=czyok; //if(czyok) cout << i+1 << endl; } printf("%d", p); 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 24 25 26 27 | #include <iostream> #include <fstream> using namespace std; int n; char c; int main() { scanf("%d", &n); n/=10; int p=0; for(int i=0; i<10; i++){ bool czyok=true; for(int j=0; j<n; j++) { scanf("%c", &c); while(c!='T' && c!='N') scanf("%c", &c); if(c=='N') czyok=false; } p+=czyok; //if(czyok) cout << i+1 << endl; } printf("%d", p); return 0; } |