728x90
※ SW Expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.
728x90
T = int(input())
for test_case in range(1, T + 1):
N = int(input())
divisor = [2, 3, 5, 7, 11]
abcde = [0, 0, 0, 0, 0]
for i in range(5):
while(N % divisor[i] == 0):
abcde[i] += 1
N //= divisor[i]
print("#{}".format(test_case), end=" ")
print(*abcde)
728x90
'Problem Solving > SWEA' 카테고리의 다른 글
[SW Expert Academy, SWEA 1288] 새로운 불면증 치료법 (python) (0) | 2022.09.09 |
---|---|
[SW Expert Academy, SWEA 1928] Base64 Decoder (python) (0) | 2022.09.09 |
[SW Expert Academy, SWEA 1946] 간단한 압축 풀기 (python) (0) | 2022.09.09 |
[SW Expert Academy, SWEA 1948] 날짜 계산기 (python) (1) | 2022.09.07 |
[SW Expert Academy, SWEA 1954] 달팽이 숫자 (python) (0) | 2022.09.07 |