반응형
https://www.acmicpc.net/problem/2577
# @Author YoungMinKim
# baekjoon
a=int(input())
b=int(input())
c=int(input())
result = a*b*c
ls = []
for i in range(len(str(result))):
ls.append(int(str(result)[i]))
for j in range(10):
print(ls.count(j))
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 2609 (0) | 2020.08.25 |
---|---|
baekjoon - python - 2588 (0) | 2020.08.25 |
baekjoon - python - 2562 (0) | 2020.08.25 |
baekjoon - python - 2558 (0) | 2020.08.25 |
baekjoon - python - 2557 (0) | 2020.08.25 |
댓글