結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー huka_hukahuka_huka
提出日時 2021-08-28 21:39:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 1,049 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 129,448 KB
最終ジャッジ日時 2024-11-21 21:52:44
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,928 KB
testcase_01 AC 39 ms
53,476 KB
testcase_02 AC 272 ms
125,724 KB
testcase_03 AC 38 ms
53,924 KB
testcase_04 AC 37 ms
53,572 KB
testcase_05 AC 38 ms
53,064 KB
testcase_06 AC 46 ms
62,192 KB
testcase_07 AC 47 ms
61,156 KB
testcase_08 AC 48 ms
61,916 KB
testcase_09 AC 48 ms
62,796 KB
testcase_10 AC 46 ms
62,744 KB
testcase_11 AC 49 ms
64,044 KB
testcase_12 AC 253 ms
125,176 KB
testcase_13 AC 152 ms
108,152 KB
testcase_14 AC 228 ms
116,964 KB
testcase_15 AC 231 ms
118,060 KB
testcase_16 AC 127 ms
99,720 KB
testcase_17 AC 139 ms
102,892 KB
testcase_18 AC 147 ms
105,208 KB
testcase_19 AC 249 ms
122,388 KB
testcase_20 AC 180 ms
104,112 KB
testcase_21 AC 277 ms
129,448 KB
testcase_22 AC 282 ms
127,560 KB
testcase_23 AC 270 ms
127,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
def eratosthenes(n):
    Primes = []
    Is_prime = [True for _ in range(n+1)]
    Is_prime[0] = False
    Is_prime[1] = False
    for p in range(0, n+1):
        if not Is_prime[p]:
            continue
        Primes.append(p)
        for i in range(p*p, n+1, p):
            Is_prime[i] = False
    return Primes
l, r = map(int, input().split())
P = eratosthenes(r)[bisect_left(eratosthenes(r), l):]
Q = eratosthenes(2*r-1)[bisect_left(eratosthenes(2*r-1), 2*l+1):]
print(len(P)+len(Q))
0