The kth Factor of n — LeetCode 1492 Python Solution
MediumMathNumber Theory
- Problem
- #1492
- Pattern
- Math and Number Theory
- Reading time
- 2 min
- Source
- leetcode.com
The problem
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.
Example
- Input
- n = 12, k = 3
- Output
- 3
- Explanation
- Factors list is [1, 2, 3, 4, 6, 12], the 3rd factor is 3.
Python solution
Python
class Solution:
def kthFactor(self, n: int, k: int) -> int:
for i in range(1, n + 1):
if n % i == 0:
k -= 1
if k == 0:
return i
return -1Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) auxiliary |
Pattern: Math and Number Theory
Find the closed form, the invariant, or the modular identity — and skip the loop entirely. LeetCode 1492. The kth Factor of n is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Math and Number Theory.
The math and number theory guide has the Python template for the pattern and the 485 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 1492. The kth Factor of n?
- LeetCode 1492. The kth Factor of n is rated Medium on LeetCode.
- What is the time complexity of LeetCode 1492. The kth Factor of n?
- The Python solution on this page runs in O(n).
- What is the space complexity of LeetCode 1492. The kth Factor of n?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 1492. The kth Factor of n cover?
- LeetCode 1492. The kth Factor of n is tagged Math and Number Theory on LeetCode.