思路:p2、p3、p5分别记录基于2、3、5生成丑数的位置 注意:注意指针移动 class Solution: def GetUglyNumber_Solution(self , index: int) -> int: # write code here if index == 0: return 0 dp = [0] * (index) dp[0] = 1 p2, p3, p5 = 0, 0, 0 # 乘以2、3、5当前可生成最小丑数的位置...