結果

問題 No.713 素数の和
ユーザー titiatitia
提出日時 2024-12-20 04:55:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,688 KB
最終ジャッジ日時 2024-12-20 04:55:51
合計ジャッジ時間 7,158 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
50,560 KB
testcase_01 AC 579 ms
50,560 KB
testcase_02 AC 604 ms
50,432 KB
testcase_03 AC 589 ms
50,688 KB
testcase_04 AC 608 ms
50,560 KB
testcase_05 AC 571 ms
50,432 KB
testcase_06 AC 592 ms
50,560 KB
testcase_07 AC 602 ms
50,560 KB
testcase_08 AC 590 ms
50,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=1000000
L=1000

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]


N=int(input())

ANS=0
for p in Primes:
    if p<=N:
        ANS+=p
print(ANS)
0