#include <iostream>
int main() {
int n;
std::cin >> n;
std::string res;
std::cin >> res;
int points = 0;
for (int i = 0; i < n; i += n/10) {
bool all = true;
for (int j = i; j < i + n/10; ++j) {
if (res[j] == 'N') all = false;
}
points += all;
}
std::cout << points << '\n';
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <iostream> int main() { int n; std::cin >> n; std::string res; std::cin >> res; int points = 0; for (int i = 0; i < n; i += n/10) { bool all = true; for (int j = i; j < i + n/10; ++j) { if (res[j] == 'N') all = false; } points += all; } std::cout << points << '\n'; return 0; } |
English