結果

問題 No.713 素数の和
ユーザー maspymaspy
提出日時 2023-05-12 21:13:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,700 KB
最終ジャッジ日時 2024-11-28 16:53:35
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
44,444 KB
testcase_01 AC 514 ms
44,056 KB
testcase_02 AC 513 ms
44,440 KB
testcase_03 AC 509 ms
44,196 KB
testcase_04 AC 510 ms
44,700 KB
testcase_05 AC 510 ms
44,572 KB
testcase_06 AC 511 ms
44,064 KB
testcase_07 AC 511 ms
44,436 KB
testcase_08 AC 520 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(read())

def make_prime(U):
    is_prime = np.zeros(U,np.bool_)
    is_prime[2] = 1
    is_prime[3::2] = 1
    M = int(U**.5)+1
    for p in range(3,M,2):
        if is_prime[p]:
            is_prime[p*p::p+p] = 0
    return is_prime, is_prime.nonzero()[0]

is_prime, primes = make_prime(10**5)
answer = primes[primes<=N].sum()
print(answer)
0