Notice
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Git
- 편스토랑
- 백준
- 더현대서울 맛집
- leetcode
- programmers
- github
- Kaggle
- SW Expert Academy
- 파이썬
- 캐치카페
- AI 경진대회
- hackerrank
- PYTHON
- 자연어처리
- ubuntu
- 프로그래머스 파이썬
- 프로그래머스
- ChatGPT
- gs25
- 편스토랑 우승상품
- 맥북
- Real or Not? NLP with Disaster Tweets
- 데이콘
- Docker
- 우분투
- Baekjoon
- 금융문자분석경진대회
- 코로나19
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1492. The kth Factor of n (Python) 본문
728x90
반응형

Given two positive integers n and k.
A factor of an integer n is defined as an integer i where n % i == 0.
Consider a list of all factors of n sorted in ascending order, return the kth factor in this list or return -1 if n has less than k factors.
Example 1:
Input: n = 12, k = 3
Output: 3
Explanation: Factors list is [1, 2, 3, 4, 6, 12], the 3rd factor is 3.
Example 2:
Input: n = 7, k = 2
Output: 7
Explanation: Factors list is [1, 7], the 2nd factor is 7.
Example 3:
Input: n = 4, k = 4
Output: -1
Explanation: Factors list is [1, 2, 4], there is only 3 factors. We should return -1.
Example 4:
Input: n = 1, k = 1
Output: 1
Explanation: Factors list is [1], the 1st factor is 1.
Example 5:
Input: n = 1000, k = 3
Output: 4
Explanation: Factors list is [1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100, 125, 200, 250, 500, 1000].
Constraints:
- 1 <= k <= n <= 1000
Solution
class Solution:
def kthFactor(self, n: int, k: int) -> int:
loop_num = n // 2
if n == 1:
divisors = [1]
else:
divisors = []
for i in range(1, loop_num+1):
if n % i == 0:
divisors.append(i)
divisors.append(n // i)
divisors = sorted(list(set(divisors)))
if len(divisors) < k:
return -1
return divisors[k-1]



SOMJANG/CODINGTEST_PRACTICE
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
| [leetCode] 350. Intersection of Two Arrays II (Python) (0) | 2020.10.05 |
|---|---|
| [leetCode] 729. My Calendar I (Python) (2) | 2020.10.04 |
| [leetCode] 374. Guess Number Higher or Lower (Python) (0) | 2020.10.02 |
| [leetCode] 190. Reverse Bits (Python) (0) | 2020.10.01 |
| [leetCode] 234. Palindrome Linked List (Python) (0) | 2020.09.30 |
Comments