結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-27 22:45:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 724 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 97,208 KB
最終ジャッジ日時 2024-11-21 03:55:02
合計ジャッジ時間 12,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
96,952 KB
testcase_01 AC 385 ms
97,076 KB
testcase_02 AC 679 ms
97,084 KB
testcase_03 AC 380 ms
97,040 KB
testcase_04 AC 382 ms
97,208 KB
testcase_05 AC 384 ms
97,208 KB
testcase_06 AC 388 ms
97,172 KB
testcase_07 AC 384 ms
97,076 KB
testcase_08 AC 386 ms
96,968 KB
testcase_09 AC 390 ms
97,160 KB
testcase_10 AC 387 ms
97,208 KB
testcase_11 AC 385 ms
96,948 KB
testcase_12 AC 641 ms
97,080 KB
testcase_13 AC 490 ms
96,952 KB
testcase_14 AC 507 ms
96,956 KB
testcase_15 AC 550 ms
96,956 KB
testcase_16 AC 435 ms
96,952 KB
testcase_17 AC 392 ms
97,080 KB
testcase_18 AC 404 ms
97,080 KB
testcase_19 AC 686 ms
97,076 KB
testcase_20 AC 457 ms
97,156 KB
testcase_21 AC 724 ms
97,204 KB
testcase_22 AC 395 ms
96,952 KB
testcase_23 AC 411 ms
97,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import chain


def prime_set(N):
    """
    Nまでの素数のsetを返す
    """
    if N < 4:
        return ({}, {}, {2}, {2, 3})[N]
    Nsq = int(N ** 0.5 + 0.5) + 1
    primes = {2, 3} | set(chain(range(5, N + 1, 6), range(7, N + 1, 6)))
    for i in range(5, Nsq, 2):
        if i in primes:
            primes -= set(range(i * i, N + 1, i * 2))
    return primes


U = 2 * 10 ** 6 + 10
Prime = prime_set(U)

L, R = map(int, input().split())
ans = 0
for i in range(L, R+1):
    if i in Prime:
        ans += 1
for i in range(L, R):
    if 2 * i + 1 in Prime:
        ans += 1
print(ans)
0