結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-10 14:44:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-06-25 21:07:37
合計ジャッジ時間 4,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 224 ms
105,472 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 48 ms
61,184 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 51 ms
63,488 KB
testcase_12 AC 226 ms
104,704 KB
testcase_13 AC 121 ms
86,144 KB
testcase_14 AC 175 ms
99,584 KB
testcase_15 AC 182 ms
99,840 KB
testcase_16 AC 97 ms
80,768 KB
testcase_17 AC 99 ms
82,816 KB
testcase_18 AC 109 ms
85,120 KB
testcase_19 AC 214 ms
102,912 KB
testcase_20 AC 133 ms
91,392 KB
testcase_21 AC 244 ms
108,288 KB
testcase_22 AC 177 ms
106,240 KB
testcase_23 AC 185 ms
108,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r=map(int,input().split())
c=2*r+1
prime=[True]*(c+1)
prime[0]=False;prime[1]=False
primes=set()
for i in range(2,c+1):
    if prime[i]:
        primes.add(i)
        for j in range(2*i,c+1,i):
            prime[j]=False
ans=0
for a in range(l,r+1):
    if a in primes:
        ans+=1
    if 2*a+1 in primes:
        ans+=1
print(ans)
0