首页 > 代码库 > 欧拉计划(python) problem 1
欧拉计划(python) problem 1
problem 1
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
python code:
k3=0;
k5=0;
result=0;
for i in range(1,1000):
k3=k3+1
k5=k5+1
if k3%3==0:
k3=0
result+=i
continue
if k5%5==0:
k5=0
result+=i
continue
print(result)
输出结果: 233168
大概用时:小于1s
欧拉计划(python) problem 1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。