BackJoon Algorithm 2941 크로아티아 알파벳 (Java)

업데이트:
최대 1 분 소요

BackJoon Algorithm - Java

alt

문제

alt

풀이

  • contains 함수를 사용하여 입력 받은 str을 검사한다.
  • 포함되있으면 크로아티아 알파벳을 @로 재정의헤서 개수를 센다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Back_2941 {
    public static void main(String[] args) throws IOException {

        // given
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String str = br.readLine();
        String cro_alphabet[] = {"c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="};
        // when
        for(int i=0;i <cro_alphabet.length;i++){
            if(str.contains(cro_alphabet[i])){
                str = str.replace(cro_alphabet[i], "@");
            }
        }

        // then
        System.out.println(str.length());
        br.close();
    }
}

댓글남기기