Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89658 丁俊杰 15相同数的次数 Python3 Wrong Answer 36 MS 3744 KB 139 2024-08-28 00:48:57

Tests(0/1):


Code:

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)


Run Info:

------Input------
0
------Answer-----
340
------Your output-----