結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー MineMine
提出日時 2021-09-09 17:46:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-06-09 20:23:30
合計ジャッジ時間 10,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 1,045 ms
25,856 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 33 ms
10,880 KB
testcase_11 AC 37 ms
10,752 KB
testcase_12 AC 958 ms
25,600 KB
testcase_13 AC 449 ms
18,432 KB
testcase_14 AC 726 ms
23,424 KB
testcase_15 AC 764 ms
23,808 KB
testcase_16 AC 293 ms
16,436 KB
testcase_17 AC 257 ms
17,408 KB
testcase_18 AC 342 ms
17,956 KB
testcase_19 AC 953 ms
24,448 KB
testcase_20 AC 504 ms
20,308 KB
testcase_21 AC 1,136 ms
26,368 KB
testcase_22 AC 683 ms
26,368 KB
testcase_23 AC 701 ms
26,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r = map(int, input().split())
def Sieve_of_Eratosthenes(maxA):
    lst = [None]*(maxA+1)
    lst[0] = False
    lst[1] = False
    for i in range(2, maxA+1):
        if lst[i] is None:
            for g in range(i, maxA+1, i):
                if lst[g] is None:
                    lst[g] = False
            lst[i] = True
    return lst

lst = Sieve_of_Eratosthenes(2*r+1)
ans = int(lst[r])
for i in range(l, r):
    ans += lst[i]
    ans += lst[2*i+1]

print(ans)
0