티스토리 뷰
1. Java 구현
import java.util.Scanner; public class Main { public static void main(String[] args) { /* 2018.08.08 */ String[] alphaArr = { "c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z=" }; Scanner sc = new Scanner(System.in); String input = sc.nextLine(); printResult(alphaArr, input); } public static void printResult(String[] arr, String str) { for(int i = 0; i < arr.length; i++) { str = str.replace(arr[i], "*"); } System.out.println(str.length()); } }
'알고리즘 > BaekJoon 알고리즘' 카테고리의 다른 글
[백준 알고리즘] Q11057 오르막수 - 동적프로그래밍, 모듈러 분배법칙 (0) | 2018.11.03 |
---|---|
[백준 알고리즘] Q10989 수 정렬하기 3 -Counting Sort (계수 정렬) (1) | 2018.10.12 |
[백준 알고리즘] Q5622 다이얼 (0) | 2018.10.11 |
[백준 알고리즘] Q2908 상수 (0) | 2018.10.11 |
[백준 알고리즘] Q1152 단어의 개수 (0) | 2018.10.11 |