728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
n = int(input())
cnt = 0
for i in range(1, n+1):
if n%i == 0:
cnt += 1
print(n, cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14782번 Bedtime Reading, I(python) (0) | 2021.03.08 |
---|---|
백준 알고리즘 14541번 Speed Limit(python) (0) | 2021.03.08 |
백준 알고리즘 13073번 Sums(python) (0) | 2021.03.08 |
백준 알고리즘 12790번 Mini Fantasy War(python) (0) | 2021.03.08 |
백준 알고리즘 12833번 XORXORXOR(python) (0) | 2021.03.08 |