0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:25:24 +00:00
OI-codes/Luogu/problem/P1321/P1321.cpp
2021-01-02 15:30:52 +08:00

23 lines
462 B
C++

// R38664427
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
int boy, girl;
boy = girl = 0;
cin >> s;
for (int i = 0; i < s.size() - 2; i++) {
boy += (s[i] == 'b' || s[i + 1] == 'o' || s[i + 2] == 'y');
}
for (int i = 0; i < s.size() - 3; i++) {
girl += (s[i] == 'g' || s[i + 1] == 'i' || s[i + 2] == 'r' || s[i + 3] == 'l');
}
cout << boy << endl << girl << endl;
return 0;
}