반응형
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] alpha = new int[26];
char[] words = sc.nextLine().toCharArray();
for (char ch : words)
alpha[ch-97]++;
for (int i : alpha)
System.out.print(i+" ");
}
}
아스키 코드를 활용하여 풀었습니다.
반응형
'Algorithm' 카테고리의 다른 글
백준 11328번 Strfry [ Java ] (0) | 2020.12.25 |
---|---|
백준 10807번 개수 세기 [ Java ] (0) | 2020.12.25 |
백준 15657번 N과 M (8) [ Java ] (0) | 2020.12.23 |
백준 15656번 N과 M (7) [ Java ] (0) | 2020.12.23 |
백준 15655번 N과 M (6) [ Java ] (0) | 2020.12.23 |