#include <iostream> int main(){ int n; char zn; std::ios_base::sync_with_stdio(0); std::cin>>n; int result=0; for(int i=0;i<10;i++){ bool good=true; for(int j=0;j<n/10;j++) { std::cin >> zn; if (zn=='N') good=false; }; if(good) result++; }; std::cout<<result<<std::endl; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include <iostream> int main(){ int n; char zn; std::ios_base::sync_with_stdio(0); std::cin>>n; int result=0; for(int i=0;i<10;i++){ bool good=true; for(int j=0;j<n/10;j++) { std::cin >> zn; if (zn=='N') good=false; }; if(good) result++; }; std::cout<<result<<std::endl; } |