結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 19:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-05-05 16:45:49
合計ジャッジ時間 2,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 107 ms
80,384 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 47 ms
61,312 KB
testcase_07 AC 43 ms
59,392 KB
testcase_08 AC 50 ms
60,032 KB
testcase_09 AC 45 ms
60,416 KB
testcase_10 AC 45 ms
60,288 KB
testcase_11 AC 48 ms
61,952 KB
testcase_12 AC 106 ms
79,872 KB
testcase_13 AC 77 ms
71,936 KB
testcase_14 AC 96 ms
77,568 KB
testcase_15 AC 97 ms
77,952 KB
testcase_16 AC 67 ms
68,992 KB
testcase_17 AC 70 ms
70,016 KB
testcase_18 AC 75 ms
70,784 KB
testcase_19 AC 104 ms
78,848 KB
testcase_20 AC 80 ms
73,728 KB
testcase_21 AC 115 ms
81,536 KB
testcase_22 AC 99 ms
79,488 KB
testcase_23 AC 113 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

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

p = [-1] * (2*R)

for i in range(2, R+1):
    if p[i] != -1:
        continue
    for j in range(2, R+1):
        if i*j >= 2*R:
            break
        p[i*j] = i
p[1] = 1

ans = 0
for i in range(L, R):
    if p[i] == -1:
        ans += 1
    if p[2*i+1] == -1:
        ans += 1

if p[R] == -1:
    ans += 1

print(ans)

0