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
#include <iostream>

using namespace std;

int main()
{
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(NULL);

    int n;
    string wyniki;
    cin>>n;
    cin>>wyniki;

    int punkt = 1;
    int wynik=0;

    for(int i=0; i<n; i++)
    {
        if(wyniki[i]=='N') punkt = 0;
        if((i+1)%(n/10)==0)
        {
            wynik+=punkt;
            punkt=1;
        }
    }

    cout<<wynik;

    return 0;
}