t = int(input())
for tc in range(1,t+1):
n = int(input())
a=b=c=d=e=0
while n % 2 == 0:
a += 1
n //= 2
while n % 3 == 0:
b += 1
n //= 3
while n % 5 == 0:
c += 1
n //= 5
while n % 7 == 0:
d += 1
n //= 7
while n % 11 == 0:
e += 1
n //= 11
print(f"#{tc} {a} {b} {c} {d} {e}")
'문제풀이 > SW Expert Academy' 카테고리의 다른 글
[SWEA][D2] 1288. 새로운 불면증 치료법 (파이썬/Python) (0) | 2021.10.10 |
---|---|
[SWEA][D2] 1928. Base64 Decoder (파이썬/Python) (0) | 2021.10.10 |
[SWEA][D2] 1946. 간단한 압축 풀기 (파이썬/Python) (0) | 2021.10.08 |
[SWEA][D2] 1948. 날짜 계산기 (파이썬/Python) (0) | 2021.09.24 |
[SWEA][D2] 1954. 달팽이 숫자 (파이썬/Python) (0) | 2021.09.24 |