(Python) 횟수 세는 문제
https://www.acmicpc.net/problem/2577 2577번: 숫자의 개수 첫째 줄에 A, 둘째 줄에 B, 셋째 줄에 C가 주어진다. A, B, C는 모두 100보다 같거나 크고, 1,000보다 작은 자연수이다. www.acmicpc.net 내 풀이: 1 2 3 4 5 6 7 8 9 10 11 12 a=int(input()) b=int(input()) c=int(input()) D=str(a*b*c) n=len(D) answer=[0,0,0,0,0,0,0,0,0,0] cnt=0 for i in range(n): cnt=int(D[i]) answer[cnt]+=1 for i in range(10): print(answer[i]) 이와 같이 횟수를 저장할 리스트를 만들어 정답지를 만들려는 습..
Python/Coding weight lightening
2020. 1. 4. 15:41