結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー huka_hukahuka_huka
提出日時 2021-08-28 21:36:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,640 KB
最終ジャッジ日時 2024-11-21 21:48:22
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 302 ms
125,804 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 43 ms
52,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 56 ms
61,312 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 56 ms
61,824 KB
testcase_12 AC 344 ms
125,648 KB
testcase_13 AC 189 ms
107,776 KB
testcase_14 AC 298 ms
117,412 KB
testcase_15 AC 293 ms
118,008 KB
testcase_16 AC 152 ms
99,584 KB
testcase_17 AC 168 ms
102,912 KB
testcase_18 AC 176 ms
105,088 KB
testcase_19 AC 304 ms
122,628 KB
testcase_20 AC 217 ms
104,320 KB
testcase_21 AC 347 ms
129,640 KB
testcase_22 AC 346 ms
127,620 KB
testcase_23 AC 344 ms
127,660 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