結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー H20H20
提出日時 2021-08-27 22:32:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 112,900 KB
最終ジャッジ日時 2024-11-21 03:35:02
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
109,420 KB
testcase_01 AC 131 ms
110,028 KB
testcase_02 AC 141 ms
112,204 KB
testcase_03 AC 130 ms
109,204 KB
testcase_04 AC 130 ms
109,036 KB
testcase_05 AC 129 ms
109,752 KB
testcase_06 AC 135 ms
110,680 KB
testcase_07 AC 131 ms
109,460 KB
testcase_08 AC 131 ms
110,956 KB
testcase_09 AC 132 ms
109,620 KB
testcase_10 AC 131 ms
111,028 KB
testcase_11 AC 133 ms
111,660 KB
testcase_12 AC 142 ms
112,492 KB
testcase_13 AC 138 ms
112,500 KB
testcase_14 AC 139 ms
111,296 KB
testcase_15 AC 141 ms
111,668 KB
testcase_16 AC 137 ms
112,316 KB
testcase_17 AC 134 ms
111,068 KB
testcase_18 AC 135 ms
112,348 KB
testcase_19 AC 147 ms
112,752 KB
testcase_20 AC 135 ms
112,188 KB
testcase_21 AC 152 ms
112,756 KB
testcase_22 AC 130 ms
110,088 KB
testcase_23 AC 137 ms
112,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#エラトステネスの篩Trueなら素数
#勝手に0のFalseを追加した版
def sieve(n):
    is_prime = [True for _ in range(n+1)]
    is_prime[0] = False

    for i in range(2, n+1):
        if is_prime[i-1]:
            j = i * i
            while j <= n:
                is_prime[j-1] = False
                j += i
    table = [ i for i in range(1, n+1) if is_prime[i-1]]
    return [False]+is_prime, table
A,T =  sieve(10**6*2+100)
L,R = map(int, input().split())
cnt = int(A[R])
for i in range(L,R):
    if A[i]:
        cnt+=1
    if A[2*i+1]:
        cnt+=1

print(cnt)
0