結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー ああいいああいい
提出日時 2021-12-28 18:02:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,682 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,028 KB
最終ジャッジ日時 2024-10-02 11:45:15
合計ジャッジ時間 16,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,666 ms
34,412 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 35 ms
10,752 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 40 ms
10,880 KB
testcase_11 AC 42 ms
10,880 KB
testcase_12 AC 1,603 ms
34,004 KB
testcase_13 AC 809 ms
27,116 KB
testcase_14 AC 1,252 ms
32,008 KB
testcase_15 AC 1,289 ms
32,280 KB
testcase_16 AC 534 ms
20,108 KB
testcase_17 AC 583 ms
21,424 KB
testcase_18 AC 643 ms
22,144 KB
testcase_19 AC 1,511 ms
32,808 KB
testcase_20 AC 912 ms
28,800 KB
testcase_21 AC 1,682 ms
35,028 KB
testcase_22 AC 1,329 ms
35,028 KB
testcase_23 AC 1,362 ms
34,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R = map(int,input().split())

C = 2 * R  + 2
dat = [0] * C
prime = set()

i = 2
while i < C:
    if dat[i] == 0:
        prime.add(i)
        for j in range(i * 2,C,i):
            dat[j] = 1
    i += 1
ans = 0
for A in range(L,R + 1):
    if A in prime:
        ans += 1
for A in range(L,R):
    if 2 * A + 1 in prime:
        ans += 1
print(ans)
0