結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー titiatitia
提出日時 2021-08-27 21:31:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 137,728 KB
最終ジャッジ日時 2024-11-21 00:59:45
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
135,552 KB
testcase_01 AC 199 ms
135,440 KB
testcase_02 AC 247 ms
136,704 KB
testcase_03 AC 198 ms
135,444 KB
testcase_04 AC 192 ms
135,552 KB
testcase_05 AC 207 ms
135,552 KB
testcase_06 AC 205 ms
137,216 KB
testcase_07 AC 206 ms
135,296 KB
testcase_08 AC 205 ms
135,736 KB
testcase_09 AC 212 ms
135,808 KB
testcase_10 AC 212 ms
135,808 KB
testcase_11 AC 206 ms
137,600 KB
testcase_12 AC 268 ms
137,088 KB
testcase_13 AC 233 ms
137,088 KB
testcase_14 AC 226 ms
137,088 KB
testcase_15 AC 233 ms
137,088 KB
testcase_16 AC 215 ms
137,216 KB
testcase_17 AC 210 ms
137,088 KB
testcase_18 AC 217 ms
137,216 KB
testcase_19 AC 250 ms
137,344 KB
testcase_20 AC 219 ms
137,332 KB
testcase_21 AC 293 ms
137,344 KB
testcase_22 AC 205 ms
135,808 KB
testcase_23 AC 227 ms
137,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import math

x=3*10**6

L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]

S=set(Primes)

L,R=map(int,input().split())

ANS=0
for i in range(L,R+1):
    if i in S:
        ANS+=1

for i in range(L,R):
    if i+i+1 in S:
        ANS+=1

print(ANS)

0