Run ID:89662
提交时间:2024-08-28 00:53:23
import math a=20*30/math.gcd(20,30) #lcm计算最小公倍数 b=1000//a c=1000%a if c<=20: print(b*20+c) else: print(b*20+20)