結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー teepeeteeteepeetee
提出日時 2021-09-03 08:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 219,964 KB
最終ジャッジ日時 2024-12-14 09:59:22
合計ジャッジ時間 4,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,760 KB
testcase_01 AC 38 ms
53,600 KB
testcase_02 AC 371 ms
193,664 KB
testcase_03 AC 38 ms
52,744 KB
testcase_04 AC 37 ms
52,652 KB
testcase_05 AC 36 ms
53,296 KB
testcase_06 AC 52 ms
63,176 KB
testcase_07 AC 47 ms
60,436 KB
testcase_08 AC 47 ms
61,432 KB
testcase_09 AC 50 ms
61,440 KB
testcase_10 AC 47 ms
61,500 KB
testcase_11 AC 55 ms
65,000 KB
testcase_12 AC 345 ms
208,352 KB
testcase_13 AC 180 ms
136,752 KB
testcase_14 AC 244 ms
146,072 KB
testcase_15 AC 259 ms
169,172 KB
testcase_16 AC 115 ms
112,924 KB
testcase_17 AC 96 ms
92,684 KB
testcase_18 AC 111 ms
103,152 KB
testcase_19 AC 369 ms
196,252 KB
testcase_20 AC 173 ms
147,844 KB
testcase_21 AC 443 ms
219,964 KB
testcase_22 AC 169 ms
117,068 KB
testcase_23 AC 195 ms
134,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r=map(int,input().split())
lis=[]
for i in range(l,r+1):
    lis.append((i,i))
    if i < r+1:
        lis.append((i,i+1))
n= r+r

sosu=[i for i in range(n+1) ]
for i in range(4,n+1,2):
    sosu[i]=0
for j in range(3,int(n**0.5)+1,2):
    for k in range(j,n//j+1,2):
        sosu[j*k]=0
        
set_p=set(sosu[2:])
ans=0

for i,j in lis:
    if i == j :
        if i in set_p:
            ans+=1            
    else:
        if i+j in set_p:
            ans+=1
print(ans)
    
0