Deep_Dev

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AV14P0c6AAUCFAYi&categoryId=AV14P0c6AAUCFAYi&categoryType=CODE&problemTitle=&orderBy=RECOMMEND_COUNT&selectCodeLang=ALL&select-1=3&pageSize=10&pageIndex=2#none 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

 


찾을 문자열에서 검색어가 있으면 수만 세면되니까, replaceAll이용하여 검색어를 *로 대체하고

*를 카운팅함.

 

 

 

import java.util.Scanner;
class Solution{
    public static void main(String args[]) throws Exception {
        Scanner kb = new Scanner(System.in);
        int[] answer=new int[10];
        int cnt=0;
        for(int test_case=0; test_case<10; test_case++){
            int n=kb.nextInt();
            String s=kb.next();
            String f=kb.next();
            f=f.replaceAll(s,"*");
            for(char x:f.toCharArray()){
                if(x=='*')
                    cnt++;
            }
            answer[test_case]=cnt;
            cnt=0;
        }
        for(int i=0; i<answer.length; i++) System.out.println("#"+(i+1)+" "+answer[i]);
 
    }
}