結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー KudeKude
提出日時 2021-08-27 21:27:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-11-21 00:50:30
合計ジャッジ時間 4,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
93,440 KB
testcase_01 AC 118 ms
93,568 KB
testcase_02 AC 134 ms
97,280 KB
testcase_03 AC 119 ms
93,568 KB
testcase_04 AC 116 ms
94,080 KB
testcase_05 AC 115 ms
93,440 KB
testcase_06 AC 121 ms
96,256 KB
testcase_07 AC 117 ms
93,824 KB
testcase_08 AC 115 ms
94,080 KB
testcase_09 AC 115 ms
94,848 KB
testcase_10 AC 117 ms
94,080 KB
testcase_11 AC 124 ms
97,280 KB
testcase_12 AC 133 ms
97,408 KB
testcase_13 AC 124 ms
97,792 KB
testcase_14 AC 127 ms
97,536 KB
testcase_15 AC 123 ms
97,408 KB
testcase_16 AC 127 ms
97,152 KB
testcase_17 AC 130 ms
97,024 KB
testcase_18 AC 125 ms
97,280 KB
testcase_19 AC 138 ms
96,768 KB
testcase_20 AC 124 ms
97,152 KB
testcase_21 AC 139 ms
97,280 KB
testcase_22 AC 119 ms
93,952 KB
testcase_23 AC 130 ms
98,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Primes_MAX = 2 * 10 ** 6 + 100
Primes = []
Sieve = [0] * Primes_MAX
Sieve[0] = Sieve[1] = -1
for p in range(2, Primes_MAX):
    if not Sieve[p]:
        Primes.append(p)
        Sieve[p] = p
        for q in range(p * p, Primes_MAX, p):
            if not Sieve[q]:
                Sieve[q] = p

l, r = map(int, input().split())
ans = 0
p = 0
for i in range(l, r):
    x = i + i + 1
    while Primes[p] < x:
        p += 1
    ans += Primes[p] == x

for i in range(l, r + 1):
    ans += Sieve[i] == i

print(ans)
0