1 条题解
-
0谢宗熹 (xiezongxi1) LV 8 @ 2024-2-6 13:05:31
def gcd(a, b): while b: a, b = b, a % b return a def lcm(a, b): return a * b / gcd(a, b) a=int(input()) b=int(input()) print(int(lcm(a,b)))
- 1
信息
- ID
- 1373
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- 递交数
- 22
- 已通过
- 14
- 上传者