1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/第 k 个数 [get-kth-magic-number-lcci].html
2022-03-29 12:43:11 +08:00

9 lines
351 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>有些数的素因子只有 357请设计一个算法找出第 k 个数。注意,不是必须有这些素因子,而是必须不包含其他的素因子。例如,前几个数按顺序应该是 135791521。</p>
<p><strong>示例 1:</strong></p>
<pre><strong>输入: </strong>k = 5
<strong>输出: </strong>9
</pre>