개발하는 자몽

[2941] 문자열 - 크로아티아 알파벳 본문

Algorithm

[2941] 문자열 - 크로아티아 알파벳

jaamong 2022. 4. 21. 14:45

문제

 

코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String str = br.readLine();

        int len = str.length();
        int cnt = 0;

        for (int i = 0; i < len; i++) {
            char ch = str.charAt(i);

            if (ch == 'c' && i < len - 1) {
                if (str.charAt(i + 1) == '=' || str.charAt(i + 1) == '-') i++;
            } else if (ch == 'd' && i < len - 1) {
                if(str.charAt(i + 1) == '-') i++;
                else if (str.charAt(i + 1) == 'z' && i < len - 2)
                    if (str.charAt(i + 2) == '=') i += 2;
            } else if ((ch == 'l' || ch == 'n') && i < len - 1) {
                if (str.charAt(i + 1) == 'j') i++;
            } else if ((ch == 's' || ch == 'z') && i < len - 1) {
                if (str.charAt(i + 1) == '=') i++;
            }
            cnt++;
        }
        System.out.println(cnt);
    }
}

'Algorithm' 카테고리의 다른 글

백준[1463] - 1로 만들기 (Java)  (0) 2023.06.24
[1316] 문자열 - 그룹 단어 체커  (0) 2022.04.22
[5622] 문자열 - 다이얼  (0) 2022.04.20
[2908] 문자열 - 상수  (0) 2022.04.19
[1152]문자열 - 단어의 개수  (0) 2022.04.18
Comments