結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-27 21:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 92,108 KB
最終ジャッジ日時 2024-11-21 01:05:25
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
87,856 KB
testcase_01 AC 132 ms
88,708 KB
testcase_02 AC 150 ms
91,736 KB
testcase_03 AC 134 ms
88,216 KB
testcase_04 AC 130 ms
88,972 KB
testcase_05 AC 128 ms
87,584 KB
testcase_06 AC 134 ms
88,608 KB
testcase_07 AC 135 ms
89,408 KB
testcase_08 AC 127 ms
87,448 KB
testcase_09 AC 140 ms
88,688 KB
testcase_10 AC 142 ms
89,892 KB
testcase_11 AC 144 ms
89,808 KB
testcase_12 AC 149 ms
90,872 KB
testcase_13 AC 149 ms
90,804 KB
testcase_14 AC 147 ms
91,772 KB
testcase_15 AC 147 ms
91,344 KB
testcase_16 AC 154 ms
91,856 KB
testcase_17 AC 152 ms
91,472 KB
testcase_18 AC 147 ms
90,748 KB
testcase_19 AC 149 ms
89,792 KB
testcase_20 AC 146 ms
92,108 KB
testcase_21 AC 145 ms
88,668 KB
testcase_22 AC 146 ms
88,596 KB
testcase_23 AC 155 ms
90,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sieve(n):
    ass = []
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, int(math.sqrt(n))+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    for i in range(n+1):
        if is_prime[i]:
            ass.append(i)
    return(ass)

P = sieve(2*10**6)

l, r = map(int, input().split())
ans = 0
for p in P:
    if p == 2:
        if l <= 2 <= r:
            ans += 1
    else:
        a = (p-1)//2
        b = (p+1)//2
        if l <= a and b <= r:
            ans += 1
        if l <= p <= r:
            ans += 1
print(ans)
0