Run ID:89658

提交时间:2024-08-28 00:48:57

import math a=math.lcm(20,30) #lcm计算最小公倍数 b=1000//a c=1000%a if c<=20: print(b*20+c) else: print(b*20+20)