백준1 백준 2577 : 숫자의 개수 백준 수학, 사칙연산에 분류되어있는 '숫자의 개수' 문제를 풀어보았다. list와 count 함수를 이용하면 쉽게 해결 할 수 있었다. 제출 코드 A = int(input()) B = int(input()) C = int(input()) #3개 값 입력받기 result = A*B*C #곱한 값 result_list = list(str(result)) #list, str로 변경 for i in range(10): #각 숫자로 판단하기위해서 result_count = result_list.count(str(i)) #list내 count함수 사용 print(result_count) 2021. 10. 18. 이전 1 다음