728x90
https://www.acmicpc.net/problem/2577
A=int(input())
B=int(input())
C=int(input())
D=A*B*C
d=str(D)
cnt=[0,0,0,0,0,0,0,0,0,0]
for i in range(len(d)):
for j in range(10):
if int(d[i])==j:
cnt[j]+=1
for i in range(10):
print(cnt[i])
반응형
'전.py' 카테고리의 다른 글
원의 넓이와 둘레를 tuple로 반환하는 함수 (0) | 2020.12.21 |
---|---|
피타고라스 정리를 만족하는 삼각형 리스트 (0) | 2020.12.21 |
백준 1946 신입 사원 (0) | 2020.12.17 |
백준 1673 치킨 쿠폰 (0) | 2020.12.17 |
백준 2309 일곱 난쟁이 (0) | 2020.12.17 |