码迷,mamicode.com
首页 > 其他好文 > 详细

264丑数II

时间:2020-01-31 14:12:15      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:开始   时代   app   int   eve   ==   number   class   none   

题目:

来源:

法一:自己的超时代码

思路:从2开始由小到大遍历判断每一个数是否为丑数,由于到后面丑数越来越稀疏,导致非常费时间.

技术图片
class Solution:
    def nthUglyNumber(self, n: int) -> int:
        if n == 1:
            return 1
        ans = [1]
        k = 2
        while len(ans) < n:
            for j in [2,3,5]:
                # 如果除以2 3 5中的某个数可以除尽,则判断商是否在之前的数中
                # 如果在说明是丑数,否则不是
                if k % j == 0:
                    if int(k/j) in ans:
                        ans.append(k)
                        break
            k += 1
        return ans[-1]
View Code

法二:别人代码   利用三指针

 

264丑数II

标签:开始   时代   app   int   eve   ==   number   class   none   

原文地址:https://www.cnblogs.com/xxswkl/p/12245095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!