전.py
백준 2577 숫자의 개수
https://www.acmicpc.net/problem/2577 2577번: 숫자의 개수 첫째 줄에 A, 둘째 줄에 B, 셋째 줄에 C가 주어진다. A, B, C는 모두 100보다 같거나 크고, 1,000보다 작은 자연수이다. www.acmicpc.net A=int(input()) B=int(input()) C=int(input()) D=A*B*C d=str(D) cnt=[0,0,0,0,0,0,0,0,0,0] for i in range(len(d)): for j in range(10): if int(d[i])==j: cnt[j]+=1 for i in range(10): print(cnt[i])
2020. 12. 18. 00:30