結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー GrayCoderGrayCoder
提出日時 2018-05-27 16:19:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 1,000 ms
コード長 578 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,496 KB
最終ジャッジ日時 2024-06-28 19:08:04
合計ジャッジ時間 3,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 31 ms
51,840 KB
testcase_03 AC 42 ms
61,056 KB
testcase_04 AC 31 ms
51,840 KB
testcase_05 AC 31 ms
52,608 KB
testcase_06 AC 31 ms
52,352 KB
testcase_07 AC 31 ms
52,224 KB
testcase_08 AC 31 ms
51,840 KB
testcase_09 AC 32 ms
52,480 KB
testcase_10 AC 33 ms
52,140 KB
testcase_11 AC 32 ms
51,840 KB
testcase_12 AC 33 ms
51,840 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 35 ms
57,728 KB
testcase_15 AC 31 ms
52,352 KB
testcase_16 AC 31 ms
52,224 KB
testcase_17 AC 32 ms
52,096 KB
testcase_18 AC 32 ms
52,352 KB
testcase_19 AC 54 ms
67,712 KB
testcase_20 AC 87 ms
83,072 KB
testcase_21 AC 33 ms
52,352 KB
testcase_22 AC 33 ms
51,712 KB
testcase_23 AC 36 ms
51,840 KB
testcase_24 AC 34 ms
51,840 KB
testcase_25 AC 127 ms
98,816 KB
testcase_26 AC 34 ms
52,096 KB
testcase_27 AC 33 ms
52,096 KB
testcase_28 AC 36 ms
51,712 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 32 ms
51,840 KB
testcase_31 AC 32 ms
52,736 KB
testcase_32 AC 71 ms
69,632 KB
testcase_33 AC 274 ms
138,496 KB
testcase_34 AC 269 ms
98,816 KB
testcase_35 AC 105 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, L = map(int, input().split())

    if (N - 1) * 2 > L:
        print(0)
        return

    n = L // (N - 1)
    lst = erastosthenes(n)
    cnt = L - (N - 1) * 2 + 1
    for i in range(3, n + 1, 2):
        if lst[i]:
            cnt += L - (N - 1) * i + 1
    print(cnt)

def erastosthenes(n):
    prime = [0, 1] * ((n + 1) // 2)
    if not n % 2:
        prime += [0]
    prime[1], prime[2] = 0, 1

    sqrt = n ** 0.5
    i = 3
    while i <= sqrt:
        for j in range(i ** 2, n + 1, i):
            prime[j] = 0
        i += 2
    return prime

main()
0