結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:17:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,504 KB
最終ジャッジ日時 2024-05-05 04:18:16
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
98,560 KB
testcase_01 AC 129 ms
98,688 KB
testcase_02 AC 183 ms
100,736 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 129 ms
98,688 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 129 ms
99,072 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 135 ms
100,736 KB
testcase_12 AC 182 ms
100,864 KB
testcase_13 AC 155 ms
100,864 KB
testcase_14 AC 158 ms
101,376 KB
testcase_15 AC 165 ms
100,992 KB
testcase_16 AC 145 ms
101,120 KB
testcase_17 AC 137 ms
100,736 KB
testcase_18 AC 139 ms
100,992 KB
testcase_19 AC 186 ms
101,120 KB
testcase_20 AC 153 ms
100,864 KB
testcase_21 AC 197 ms
101,248 KB
testcase_22 AC 128 ms
98,944 KB
testcase_23 AC 144 ms
101,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *


def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


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