2577번
-
[백준, Python] 2577번 - 숫자의 개수개발/알고리즘 2022. 5. 7. 22:26
정수 3개를 입력 받아주자 first = int(input()) second = int(input()) third = int(input()) first와 second, third를 곱해준 결과를 String(문자)으로 변환해준다음 List에 넣고 result라는 변수로 선언해준다. 0~9의 숫자를 number라는 이름의 리스트로 선언해준다. result = list(str(first * second * third)) number = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] for문을 통해서 result와 number의 요소에 차례대로 접근해준다. (count 함수는 찾고싶은 문자가 List안에 몇개나 들어있는지 정수로 반환해준다.) result List에 number List의 값을 차례대..