-
[백준] 2941 크로아티아 알파벳ALGORITHM/BOJ 2021. 11. 8. 00:57
https://www.acmicpc.net/problem/2941
2021-11-07
123456789101112131415161718import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class Main {public static String[] arr = {"c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="};public static void main(String[] args) throws IOException {BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));StringTokenizer st = new StringTokenizer(bf.readLine());String str = st.nextToken();for (String s : arr) {if (str.contains(s)) str = str.replaceAll(s, "X");}System.out.println(str.length());}}cs #문제풀이
replace를 사용하여 푸는 방법도 있을 것이고, 그냥 문자 하나하나 체크하는 방법도 있을 것이다
이 문제랑 좀 비슷하다는 생각을 했다.
https://void2017.tistory.com/259
'ALGORITHM > BOJ' 카테고리의 다른 글
[백준] 14716 현수막 (0) 2021.11.15 [백준]1316 그룹 단어 체커 (0) 2021.11.08 [백준] 2467 용액 (0) 2021.11.02 [백준] 1913 달팽이 (0) 2021.09.29 [백준] 10816 숫자 카드 2 (0) 2021.09.29