結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー lloyzlloyz
提出日時 2021-12-01 23:56:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 84,668 KB
最終ジャッジ日時 2024-07-05 01:41:53
合計ジャッジ時間 4,497 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
82,048 KB
testcase_01 AC 128 ms
82,176 KB
testcase_02 AC 140 ms
83,840 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 129 ms
82,176 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 119 ms
82,432 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 130 ms
83,840 KB
testcase_12 AC 132 ms
84,480 KB
testcase_13 AC 140 ms
83,712 KB
testcase_14 AC 131 ms
83,840 KB
testcase_15 AC 141 ms
84,224 KB
testcase_16 AC 129 ms
83,840 KB
testcase_17 AC 135 ms
83,712 KB
testcase_18 AC 129 ms
83,968 KB
testcase_19 AC 144 ms
83,968 KB
testcase_20 AC 136 ms
83,712 KB
testcase_21 AC 142 ms
84,224 KB
testcase_22 AC 124 ms
82,048 KB
testcase_23 AC 129 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Prime = [True for _ in range(2 * 10**6 + 2)]
Prime[0] = Prime[1] = False
for i in range(2, 2 * 10**6 + 2):
    if not Prime[i]:
        continue
    for j in range(2 * i, 2 * 10**6 + 2, i):
        Prime[j] = False

l, r = map(int, input().split())
ans = 0
for i in range(l, r + 1):
    if Prime[i]:
        ans += 1
    if Prime[2 * i + 1]:
        ans += 1
print(ans)
0