1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <bits/stdc++.h>
using namespace std;

int res;

int main()
{
	int n; cin >> n;
	string a; cin >> a;
	bool f=1;
	
	for(int i=0; i<n; i++)
	{
		if(a[i] == 'N') f=0;
		if((i+1)%(n/10) == 0)
		{
			if(f) res ++;
			f = 1;
		}
	}
	cout << res;
}