https://www.acmicpc.net/problem/10808
코드 :
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));
StringBuilder sb = new StringBuilder();
String word = br.readLine();
int[] alphabet = new int[26];
for(int i=0; i<word.length(); i++){
alphabet[word.charAt(i) - 97]++;
}
for(int i=0; i<26; i++){
sb.append(alphabet[i]).append(" ");
}
System.out.println(sb);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 10824번 - 네 수 (Java 8) (0) | 2022.03.14 |
---|---|
백준 11655번 - ROT13 (Java 8) (0) | 2022.03.14 |
백준 1918번 - 후위 표기식 (Java 8) (0) | 2022.03.14 |
백준 1935번 - 후위 표기식 2 (0) | 2022.03.13 |
백준 17299번 - 오큰등수 (Java 8) (0) | 2022.03.13 |
댓글