#include<iostream> int main(){ int n, r = 0; std::cin >> n; n /= 10; char g; bool f; for(int i = 0; i < 10; i++){ f = true; for(int j = 0; j < n; j++){ std::cin >> g; if(g == 'N') f = false; } r += f; } std::cout << r << "\n"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include<iostream> int main(){ int n, r = 0; std::cin >> n; n /= 10; char g; bool f; for(int i = 0; i < 10; i++){ f = true; for(int j = 0; j < n; j++){ std::cin >> g; if(g == 'N') f = false; } r += f; } std::cout << r << "\n"; return 0; } |