//: Potyczki Algorytmiczne 2022 // PUN #include <cstdio> int main() { int n{}; char result[101]{}; std::scanf("%d", &n); std::scanf("%s", result); const int tests{ n/10 }; int score{}; bool ok{ true }; for (int i = 1; i <= n; ++i) { if (result[i-1] == 'N') { ok = false; } if ((i % tests) == 0) { if (ok) { ++score; } ok = true; } } std::printf("%d\n", score); }
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 28 29 30 31 32 33 34 35 | //: Potyczki Algorytmiczne 2022 // PUN #include <cstdio> int main() { int n{}; char result[101]{}; std::scanf("%d", &n); std::scanf("%s", result); const int tests{ n/10 }; int score{}; bool ok{ true }; for (int i = 1; i <= n; ++i) { if (result[i-1] == 'N') { ok = false; } if ((i % tests) == 0) { if (ok) { ++score; } ok = true; } } std::printf("%d\n", score); } |