#include <iostream>
#include <string>
using std::cin, std::cout;
int main()
{
std::ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
int partSize = n/10;
std::string tests;
cin >> tests;
int score = 10;
for (int i = 0; i < n;)
{
if (tests[i]=='N')
{
i = (i/partSize+1)*partSize;
score--;
}
else i++;
}
cout << 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 | #include <iostream> #include <string> using std::cin, std::cout; int main() { std::ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; int partSize = n/10; std::string tests; cin >> tests; int score = 10; for (int i = 0; i < n;) { if (tests[i]=='N') { i = (i/partSize+1)*partSize; score--; } else i++; } cout << score; } |
English