문제
풀이 (Python)
1 2 3 4 5 6 7 8 9 10 11 12 13 | result = 1 count = [0 for i in range(10)] for i in range(3): result *= int(input()) for i in range(len(str(result))): index = int(str(result)[i]) count[index] += 1 for i in range(10): print(count[i]) | cs |
키워드 (Keyword)
문제 출처
'프로그래밍 > Baekjoon' 카테고리의 다른 글
(파이썬) 백준 알고리즘 2920번 (1) | 2018.12.05 |
---|---|
(파이썬) 백준 알고리즘 8958번 (0) | 2018.12.04 |
(파이썬) 백준 알고리즘 1152번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 1065번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 1110번 (0) | 2018.12.02 |