[2501번] 약수 구하기

HYEOB KIM·2023년 9월 6일
0

algorithm

목록 보기
42/44
post-custom-banner

문제

2501번 약수 구하기

코드

import sys

N, K = map(int, sys.stdin.readline().split())
cnt = 0
result = 0

for i in range(1, N+1):
    if N % i == 0:
        cnt += 1
    if cnt == K:
        result = i
        break

print(result)
profile
Devops Engineer

0개의 댓글