https://www.acmicpc.net/problem/2577
n1=int(input())
n2=int(input())
n3=int(input())
result=n1*n2*n3
#정수를 리스트로 받기
abclist = list(map(int,str(result)))
#리스트에 포함된 요소 x의 개수세기
for i in range(10):
print(abclist.count(i))
728x90
'파이썬알고리즘' 카테고리의 다른 글
20210605#(33) 백준 1712 파이썬 (0) | 2021.06.05 |
---|---|
20210605#(32) 백준 4344 파이썬 (0) | 2021.06.05 |
20210604#(31) 백준 1546 파이썬 (0) | 2021.06.03 |
20210603#(30) 백준 3052 파이썬 (0) | 2021.06.03 |
20210603#(28) 백준 2562 파이썬 (0) | 2021.06.03 |