#include <iostream> using namespace std; void solve(){ int n, res=0, t=1; char c; cin>>n; int x=n/10; for(int i=1; i<=n; i++){ cin>>c; if(c=='N')t=0; if(i%x==0){ if(t==1){res++;} t=1; } } cout<<res; } int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); solve(); return 0; }
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 | #include <iostream> using namespace std; void solve(){ int n, res=0, t=1; char c; cin>>n; int x=n/10; for(int i=1; i<=n; i++){ cin>>c; if(c=='N')t=0; if(i%x==0){ if(t==1){res++;} t=1; } } cout<<res; } int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); solve(); return 0; } |