Run ID:89660

提交时间:2024-08-28 00:49:58

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