보안을 그리다, 훈이

[Baekjoon/Python3] 2577번 숫자의 개수 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2577번 숫자의 개수

HooNeee 2020. 12. 3. 02:08

[Baekjoon/Python3] 2577번 숫자의 개수

 

www.acmicpc.net/problem/2577

 

2577번: 숫자의 개수

첫째 줄에 A, 둘째 줄에 B, 셋째 줄에 C가 주어진다. A, B, C는 모두 100보다 같거나 크고, 1,000보다 작은 자연수이다.

www.acmicpc.net

 

# list -> for
A = int(input())
B = int(input())
C = int(input())

list_cal = str(A * B * C)

for i in range(10):
    print(list_cal.count(str(i)))
Comments