#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define st first
#define nd second
#define pb push_back
#define mp make_pair
#define rep(i,a,b) for(ll i=(ll)a;i<=(ll)b;++i)
#define all(a) a.begin(),a.end()
#define sz(x) (int)(x).size()
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n; cin >> n;
string s; cin >> s;
s = '#'+s;
int p = n/10;
int res = 0;
rep(i,1,10){
bool ok = 1;
rep(j,(i-1)*p+1,i*p) if(s[j] == 'N') ok = 0;
if(ok) res++;
}
cout << res << "\n";
}
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 | #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; #define st first #define nd second #define pb push_back #define mp make_pair #define rep(i,a,b) for(ll i=(ll)a;i<=(ll)b;++i) #define all(a) a.begin(),a.end() #define sz(x) (int)(x).size() int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; string s; cin >> s; s = '#'+s; int p = n/10; int res = 0; rep(i,1,10){ bool ok = 1; rep(j,(i-1)*p+1,i*p) if(s[j] == 'N') ok = 0; if(ok) res++; } cout << res << "\n"; } |
English