#include <iostream> using namespace std; string s; inline bool check(int a, int b) { for(int i = a; i < b; i++) if(s[i] == 'N') return 0; return 1; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, ans = 0; cin >> n >> s; for(int i = 0; i < n; i += n/10) ans += check(i, i + n/10); cout << ans << "\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include <iostream> using namespace std; string s; inline bool check(int a, int b) { for(int i = a; i < b; i++) if(s[i] == 'N') return 0; return 1; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, ans = 0; cin >> n >> s; for(int i = 0; i < n; i += n/10) ans += check(i, i + n/10); cout << ans << "\n"; } |