

정답 코드
import sys
input = sys.stdin.readline
a = int(input())
b = int(input())
c = int(input())
mul_str = str(a*b*c)
ans = [0] * 10
for m in mul_str :
m = int(m)
ans[m] += 1
print('\n'.join(map(str, ans)))
'코딩 테스트 > 백준' 카테고리의 다른 글
[Python] 백준 10974 모든 순열 (0) | 2025.02.10 |
---|---|
[Python] 백준 11729 하노이 탑 이동 순서 (0) | 2025.02.10 |
[Python] 백준 2667 단지번호붙이기 (0) | 2025.02.07 |
[Python] 백준 1629 곱셈 (0) | 2025.02.06 |
[Python] 백준 14940 쉬운 최단거리 (1) | 2025.02.05 |