結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー kohei2019kohei2019
提出日時 2022-06-28 23:41:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-11-21 18:53:06
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
98,432 KB
testcase_01 AC 138 ms
98,432 KB
testcase_02 AC 214 ms
100,736 KB
testcase_03 AC 139 ms
98,816 KB
testcase_04 AC 146 ms
98,688 KB
testcase_05 AC 144 ms
98,560 KB
testcase_06 AC 152 ms
100,224 KB
testcase_07 AC 150 ms
98,944 KB
testcase_08 AC 140 ms
98,816 KB
testcase_09 AC 141 ms
98,816 KB
testcase_10 AC 140 ms
98,688 KB
testcase_11 AC 153 ms
100,864 KB
testcase_12 AC 206 ms
101,120 KB
testcase_13 AC 172 ms
100,736 KB
testcase_14 AC 178 ms
100,864 KB
testcase_15 AC 178 ms
100,608 KB
testcase_16 AC 157 ms
100,864 KB
testcase_17 AC 165 ms
100,864 KB
testcase_18 AC 150 ms
100,736 KB
testcase_19 AC 211 ms
100,992 KB
testcase_20 AC 161 ms
100,864 KB
testcase_21 AC 229 ms
101,376 KB
testcase_22 AC 138 ms
98,688 KB
testcase_23 AC 155 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primeset(N): #N以下の素数をsetで求める.エラトステネスの篩O(√Nlog(N))
    lsx = [1]*(N+1)
    for i in range(2,int(-(-N**0.5//1))+1):
        if lsx[i] == 1:
            for j in range(i,N//i+1):
                lsx[j*i] = 0
    setprime = set()
    for i in range(2,N+1):
        if lsx[i] == 1:
            setprime.add(i)
    return setprime

L,R = map(int,input().split())
# (A+B)*(B-A+1) = 2*P
# A+B = 2 ^ B-A+1 = P -> A=B=1 P=1 x
# A+B = P ^ B-A+1 = 2 -> B=A+1 P=2*A+1 o
# A+B = 2*P ^ B-A+1 = 1 -> B=A P=A=B o
# A+B = 1 ^ B-A+1 = 2*P -> x
setp = primeset(2*10**6)
ans = 0
for i in range(L,R+1):
    if i in setp:
        ans += 1
    if (i+1 <= R) and (2*i + 1) in setp:
        ans += 1
print(ans)
0