-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1492.the-kth-factor-of-n.py
78 lines (74 loc) · 1.41 KB
/
1492.the-kth-factor-of-n.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# @lc app=leetcode id=1492 lang=python3
#
# [1492] The kth Factor of n
#
# https://leetcode.com/problems/the-kth-factor-of-n/description/
#
# algorithms
# Medium (64.52%)
# Likes: 1363
# Dislikes: 259
# Total Accepted: 139.9K
# Total Submissions: 216.5K
# Testcase Example: '12\n3'
#
# You are 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
# k^th 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 3^rd factor is 3.
#
#
# Example 2:
#
#
# Input: n = 7, k = 2
# Output: 7
# Explanation: Factors list is [1, 7], the 2^nd 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.
#
#
#
# Constraints:
#
#
# 1 <= k <= n <= 1000
#
#
#
# Follow up:
#
# Could you solve this problem in less than O(n) complexity?
#
#
# @lc code=start
class Solution:
def kthFactor(self, n: int, k: int) -> int:
counter = 0
for i in range(1, n // 2 + 1):
if n % i == 0:
counter += 1
if counter == k:
return i
counter += 1
if counter == k:
return n
return -1
# @lc code=end