728x90
https://www.acmicpc.net/problem/2501
import sys
n, m = map(int, sys.stdin.readline().split())
arr = []
for i in range(1, 10001):
if n % i == 0:
arr.append(i)
arr.sort()
if len(arr) >= m:
print(arr[m-1])
else:
print(0)
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 17626 파이썬(python) : Four Squares - 상세해설 (0) | 2022.07.17 |
---|---|
[백준] 1075 파이썬(python) : 나누기 (0) | 2022.07.17 |
[백준] 3040 파이썬(python) : 백설 공주와 일곱 난쟁이 (0) | 2022.07.17 |
[백준] 6064 파이썬(python) : 카잉 달력 (0) | 2022.07.16 |
[백준] 14500 파이썬(python) : 테트로미노 - 백트래킹(dfs) (0) | 2022.07.16 |