Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89662 丁俊杰 15相同数的次数 Python3 Wrong Answer 31 MS 3740 KB 144 2024-08-28 00:53:23

Tests(0/1):


Code:

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)


Run Info:

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