# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param index int整型 # @return int整型 # class Solution: def GetUglyNumber_Solution(self, index: int) -> int: if index == 0: return 0 dp = [1 for _ in range(index)] a, b, c = 0, 0, 0 for i in range(1, in...