본문으로 바로가기

숫자의 개수-2577 (python)

category 백준 문제 2019. 12. 24. 00:56

숫자의 개수(2577) 문제

 

 

A=int(input('')) 
B=int(input('')) 
C=int(input(''))

result=str(A*B*C)

list_=[0]*10


for i in result:
    a=int(i)
    list_[a]=list_[a]+1

    
for j in list_:
    print(j)

'백준 문제' 카테고리의 다른 글

ATM-11399 (python)  (0) 2019.12.27
셀프넘버-4673 (python)  (0) 2019.12.27
상수-2908 (python)  (0) 2019.12.24
최댓값-2562 (python)  (0) 2019.12.24