题解 | #求最小公倍数#

求最小公倍数

http://www.nowcoder.com/practice/22948c2cad484e0291350abad86136c3

简单但超时...

a, b = map (int, input().split())
res = []
for n in range(1, a*b+1):
    if n%a==0 and n%b==0:
        res.append(n)
print(min(res))
全部评论

相关推荐

评论
点赞
收藏
分享
牛客网
牛客企业服务