#include <bits/stdc++.h>
using namespace std;
int solve() {
int n, r = 0;
string s;
cin >> n >> s;
for (int i = 0; i < n; i += n / 10) {
bool t = true;
for (int j = 0; t && j < n / 10; ++j)
t = (s[i + j] == 'T');
r += t;
}
return r;
}
int main() {
ios_base::sync_with_stdio(false), cin.tie(nullptr);
cout << solve() << '\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 | #include <bits/stdc++.h> using namespace std; int solve() { int n, r = 0; string s; cin >> n >> s; for (int i = 0; i < n; i += n / 10) { bool t = true; for (int j = 0; t && j < n / 10; ++j) t = (s[i + j] == 'T'); r += t; } return r; } int main() { ios_base::sync_with_stdio(false), cin.tie(nullptr); cout << solve() << '\n'; return 0; } |
English