結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー convexineqconvexineq
提出日時 2021-08-28 20:39:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 627 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 88,944 KB
最終ジャッジ日時 2024-11-21 21:17:23
合計ジャッジ時間 3,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
86,188 KB
testcase_01 AC 108 ms
85,988 KB
testcase_02 AC 122 ms
88,680 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 113 ms
86,300 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 107 ms
86,068 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 117 ms
88,392 KB
testcase_12 AC 120 ms
88,212 KB
testcase_13 AC 115 ms
88,208 KB
testcase_14 AC 119 ms
88,588 KB
testcase_15 AC 119 ms
88,408 KB
testcase_16 AC 112 ms
88,228 KB
testcase_17 AC 111 ms
88,448 KB
testcase_18 AC 113 ms
88,744 KB
testcase_19 AC 121 ms
88,672 KB
testcase_20 AC 114 ms
88,264 KB
testcase_21 AC 126 ms
88,944 KB
testcase_22 AC 106 ms
86,412 KB
testcase_23 AC 114 ms
88,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes_is_prime_list(N): #N以下の素数のリストを返す
    #iが素数のときis_prime_list[i]=1,それ以外は0
    N+=1
    is_prime_list = [True]*N
    is_prime_list[0], is_prime_list[1] = False, False
    for j in range(4,N,2): is_prime_list[j] = False
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return is_prime_list

L,R = map(int,input().split())
M = 2*10**6 + 10
lst = Eratosthenes_is_prime_list(M)

ans = 0
for a in range(L,R+1):
    if lst[a]: ans += 1
    if lst[2*a+1]: ans += 1
print(ans)
0