結果

問題 No.713 素数の和
ユーザー rlangevinrlangevin
提出日時 2024-06-11 08:51:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 57,472 KB
最終ジャッジ日時 2024-06-11 08:51:14
合計ジャッジ時間 1,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 38 ms
57,088 KB
testcase_05 AC 58 ms
52,096 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil
def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S

print(sum(Sieve(int(input()))))
0