結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー KuonAyanoKuonAyano
提出日時 2021-08-27 21:46:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 525 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 52,748 KB
最終ジャッジ日時 2024-11-21 01:31:58
合計ジャッジ時間 19,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,908 ms
52,112 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 39 ms
11,136 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 37 ms
11,136 KB
testcase_09 AC 38 ms
11,008 KB
testcase_10 AC 42 ms
11,264 KB
testcase_11 AC 46 ms
11,264 KB
testcase_12 AC 1,871 ms
51,764 KB
testcase_13 AC 973 ms
31,888 KB
testcase_14 AC 1,481 ms
48,508 KB
testcase_15 AC 1,581 ms
48,844 KB
testcase_16 AC 661 ms
28,680 KB
testcase_17 AC 749 ms
30,084 KB
testcase_18 AC 774 ms
30,916 KB
testcase_19 AC 1,759 ms
49,876 KB
testcase_20 AC 1,089 ms
34,784 KB
testcase_21 TLE -
testcase_22 AC 1,674 ms
52,692 KB
testcase_23 AC 1,651 ms
52,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if R == 1:
    print(0)
    exit()

V = 3*R

prime = [True for i in range(V+1)]
p = 2
while (p * p <= V):
    if (prime[p] == True):
        for i in range(p * p, V+1, p):
            prime[i] = False
    p += 1
dee = []
primes = set()
for p in range(2, V+1):
    if prime[p]:
        dee.append(p)
        primes.add(p)

count = 0

for i in range (1, R+1):
    if L <= i <= R and i in primes:
        count+=1
    if L <= i and i+1 <= R and (2*i+1) in primes:
        count+=1
print(count)
0