//
// main.cpp
// Liczenie punktów
//
// Created by Mikołaj Małysz on 12/12/2022.
//
#include <iostream>
#include <vector>
using namespace std;
int main(int argc, const char * argv[]) {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, a;
char c;
cin >> n;
a = n/10;
vector<char> v = {};
for (int i = 0; i<n; i++) {
cin >> c;
v.push_back(c);
}
bool t = true;
int score = 0;
for (int i = 0; i<n; i+=a) {
t = true;
for (int j = i; j<(i+a); j++) {
if (v[j] == 'N') {
t = false;
}
}
if (t) {
score++;
}
}
cout << score << '\n';
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 34 35 36 37 38 39 40 | // // main.cpp // Liczenie punktów // // Created by Mikołaj Małysz on 12/12/2022. // #include <iostream> #include <vector> using namespace std; int main(int argc, const char * argv[]) { ios_base::sync_with_stdio(0); cin.tie(0); int n, a; char c; cin >> n; a = n/10; vector<char> v = {}; for (int i = 0; i<n; i++) { cin >> c; v.push_back(c); } bool t = true; int score = 0; for (int i = 0; i<n; i+=a) { t = true; for (int j = i; j<(i+a); j++) { if (v[j] == 'N') { t = false; } } if (t) { score++; } } cout << score << '\n'; return 0; } |
English