This website works better with JavaScript
首页
发现
帮助
注册
登录
adelq
/
project-euler
镜像自地址
https://github.com/adelq/project-euler.git
关注
1
点赞
0
派生
0
文件
工单管理
0
目录树:
19cf6304c3
分支列表
标签列表
master
python3
project-euler
/
1.py
1.py
102 B
文件历史
原始文件
1
2
3
4
5
summation = 0
for i in range(1000):
if (i % 3 == 0) or (i % 5 == 0):
summation += i
print summation