import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int sum = sc.nextInt() * sc.nextInt() * sc.nextInt();
int[] arr = new int[10];
while(sum > 0) {
arr[sum % 10]++;
sum /= 10;
}
for(int i=0; i < arr.length; i++)
System.out.println(arr[i]);
}
}
'Etc > Algorithm' 카테고리의 다른 글
[JAVA] 백준 8958번: OX퀴즈 / length와 length(), size()의 차이 (0) | 2022.01.27 |
---|---|
[JAVA] 백준 3052번: 나머지 / BufferedReader, HashSet (0) | 2021.12.18 |
[Algorithm] 동적 계획법(DP, Dynamic Programming) (0) | 2021.11.12 |
[JAVA] 백준 10951번: A+B - 4 / hasNextInt() / 입력이 있을 때만 반복 (0) | 2021.08.01 |
[JAVA] 백준 15552번: 빠른 A+B / BufferedReader vs. Scanner (0) | 2021.08.01 |
댓글