SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com🗒️ 파이썬 코드 풀이T = int(input())for test_case in range(1, T + 1): N = int(input()) lst = [2,3,5,7,11] cnts = [0] * 5 for i in range(5) : while N % lst[i] == 0 : cnts[i] += 1 N = N / lst[i] print(f"#{test_case} {' '.join(list(map(str,cnts)))}") 1. 소인수 리스트와 카운트를 해줄 리스트를 만들어준다. 2. ..