[문제 링크] : https://www.acmicpc.net/problem/5586
#include <iostream>
#include <string>
using namespace std;
int J, I;
string S;
int main(){
cin >> S;
if(S.length() > 2){
for(int i=0; i<S.length()-2; i++){
if(S.substr(i, 3) == "JOI"){
J++;
}
else if(S.substr(i, 3) == "IOI"){
I++;
}
}
}
cout << J << "\n" << I << "\n";
return 0;
}
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 2526 - 싸이클 (C++) (0) | 2024.10.21 |
---|---|
[알고리즘] 백준 14935 - FA (C++) (0) | 2024.10.20 |
[알고리즘] 백준 24078 - 余り (Remainder) (C++) (0) | 2024.10.18 |
[알고리즘] 백준 14659 - 한조서열정리하고옴ㅋㅋ (C++) (0) | 2024.10.17 |
[알고리즘] 백준 27889 - 특별한 학교 이름 (C++) (0) | 2024.10.16 |