728x90
반응형
first_num = int(input())
secound_num = int(input())
third_num = int(input())
result = first_num * secound_num * third_num
result_list = str(result)
for i in range(10):
total_cnt = 0
for r in list(range(len(result_list))):
if int(result_list[r]) == i:
total_cnt += 1
print total_cnt
728x90
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 음계 (2920 문제) Python 2 답안 (0) | 2019.01.17 |
---|---|
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - OX퀴즈 (8958 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 단어의 개수 (1152 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 4단계 if문 사용해보기 - 평균은 넘겠지 (4344 문제) Python 2 답안 (0) | 2019.01.16 |
백준 단계별로 풀기 4단계 if문 사용해보기 - X보다 작은 수(10871 문제) Python 2 답안 (0) | 2019.01.14 |