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
36
37
38
39
40
41
#include <bits/stdc++.h>
using namespace std;

int n, res;
char s[101];

void in()
{
    scanf("%d%s", &n, s);
}

void calc()
{
    for(int i = 0; i < 10; ++i)
    {
        bool yes = 1;
        for(int j = i * (n / 10); j < (n / 10) * (i + 1); ++j)
        {
            if(s[j] == 'N')
            {
                yes = 0;
                break;
            }
        }

        if(yes)
            ++res;
    }
}

void out()
{
    printf("%d", res);
}

int main()
{
    in();
    calc();
    out();
}