[백준/Python] 2577번 숫자의 개수

divele·2023년 9월 21일

백준

목록 보기
5/17


정답

a = 1
for _ in range(3):
    a *= int(input())
a = str(a)
for i in range(10):
    print(a.count(str(i)))
profile
https://solved.ac/profile/divele

0개의 댓글