728x90
반응형
단순 수학 문제이다.
N, K = map(int, input().split())
cnt = 0
for i in range(1, N+1):
if N%i == 0:
cnt += 1
if cnt == K:
print(i)
break
if cnt < K:
print(0)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2511번 카드놀이(python) (0) | 2021.02.11 |
---|---|
백준 알고리즘 2506번 점수계산(python) (0) | 2021.02.11 |
백준 알고리즘 2490번 윷놀이(python) (0) | 2021.02.11 |
백준 알고리즘 2476번 주사위 게임(python) (0) | 2021.02.11 |
백준 알고리즘 2460번 지능형 기차 2(python) (0) | 2021.02.11 |