#include <iostream> using namespace std; int main() { int testsQuantity, groupSize; int totalScore = 0; string testsResultString; bool areGroupTestsPassed = true; cin >> testsQuantity >> testsResultString; groupSize = testsQuantity / 10; for (int i = 0; i < testsQuantity; i++) { if (testsResultString[i] == 'N') { areGroupTestsPassed = false; } if (((i + 1) % groupSize == 0 and i != 0) or groupSize == 1) { if (areGroupTestsPassed) { totalScore++; } areGroupTestsPassed = true; } } cout << totalScore << '\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 23 24 25 26 27 28 29 30 31 32 33 34 | #include <iostream> using namespace std; int main() { int testsQuantity, groupSize; int totalScore = 0; string testsResultString; bool areGroupTestsPassed = true; cin >> testsQuantity >> testsResultString; groupSize = testsQuantity / 10; for (int i = 0; i < testsQuantity; i++) { if (testsResultString[i] == 'N') { areGroupTestsPassed = false; } if (((i + 1) % groupSize == 0 and i != 0) or groupSize == 1) { if (areGroupTestsPassed) { totalScore++; } areGroupTestsPassed = true; } } cout << totalScore << '\n'; return 0; } |