結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー playerplayer
提出日時 2023-12-23 16:59:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 975 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 85,920 KB
最終ジャッジ日時 2024-09-27 12:28:14
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
82,408 KB
testcase_01 AC 123 ms
82,020 KB
testcase_02 AC 145 ms
85,576 KB
testcase_03 AC 122 ms
82,968 KB
testcase_04 AC 129 ms
83,148 KB
testcase_05 AC 134 ms
83,120 KB
testcase_06 AC 157 ms
84,816 KB
testcase_07 AC 125 ms
83,556 KB
testcase_08 AC 141 ms
83,152 KB
testcase_09 AC 119 ms
83,220 KB
testcase_10 AC 140 ms
83,508 KB
testcase_11 AC 136 ms
85,520 KB
testcase_12 AC 151 ms
85,592 KB
testcase_13 AC 135 ms
84,704 KB
testcase_14 AC 131 ms
85,444 KB
testcase_15 AC 131 ms
85,496 KB
testcase_16 AC 130 ms
85,156 KB
testcase_17 AC 125 ms
85,428 KB
testcase_18 AC 130 ms
85,920 KB
testcase_19 AC 134 ms
85,376 KB
testcase_20 AC 138 ms
84,984 KB
testcase_21 AC 134 ms
85,732 KB
testcase_22 AC 125 ms
82,428 KB
testcase_23 AC 125 ms
85,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N):
    # 素数であるかの判定リスト
    IsPrime = [True] * (N + 1)
    # i=2,3,4,...
    i = 2
    # i≤√Nまで⇔i^2≤Nまで
    while i**2 <= N:
        # iが素数でなければ
        if IsPrime[i] == False:
            # 次のiへ
            i += 1
            continue
        # k=2,3,4,...
        k = 2
        while i * k <= N:
            # iの倍数は素数でない
            IsPrime[i * k] = False
            # 次のkへ
            k += 1
        # 次のkへ
        i += 1
    return IsPrime


l, r = map(int, input().split())

lis = Eratosthenes(3 * 10**6)

cnt = 0
for a in range(l, r + 1):
    b = a
    if lis[(a + b) // 2]:
        if not (a == b == 1):
            cnt += 1
            # print(a, b)

    b = a + 1
    if b > r:
        continue
    if (a + b) % 2 == 1 or a + b == 2:
        if lis[a + b]:
            if not (a == b == 1):
                cnt += 1
                # print(a, b)

print(cnt)
0