This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
登録
サインイン
adelq
/
project-euler
同期ミラー
https://github.com/adelq/project-euler.git
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
ツリー:
6462215537
ブランチ
タグ
master
python3
project-euler
/
1.py
1.py
103 B
履歴
Raw
1
2
3
4
5
summation = 0
for i in range(1000):
if (i % 3 == 0) or (i % 5 == 0):
summation += i
print(summation)