题解 | #求最小公倍数#
求最小公倍数
http://www.nowcoder.com/practice/22948c2cad484e0291350abad86136c3
这道题都是困在计算时间的坎儿上了。难点在于如何梳理循环条件,降低计算负荷。
a, b = map(int, input().split())
for i in range(max(a,b), a*b+1, max(a,b)):
if i % min(a,b) == 0:
print(i)
break