結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-06 00:20:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 1,000 ms
コード長 940 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 88,564 KB
最終ジャッジ日時 2024-12-15 22:40:24
合計ジャッジ時間 3,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,452 KB
testcase_01 AC 39 ms
52,804 KB
testcase_02 AC 36 ms
52,528 KB
testcase_03 AC 51 ms
73,004 KB
testcase_04 AC 34 ms
52,400 KB
testcase_05 AC 37 ms
52,928 KB
testcase_06 AC 36 ms
52,664 KB
testcase_07 AC 38 ms
54,236 KB
testcase_08 AC 38 ms
52,736 KB
testcase_09 AC 36 ms
52,192 KB
testcase_10 AC 38 ms
53,812 KB
testcase_11 AC 36 ms
53,120 KB
testcase_12 AC 38 ms
52,764 KB
testcase_13 AC 37 ms
52,560 KB
testcase_14 AC 40 ms
59,800 KB
testcase_15 AC 37 ms
52,916 KB
testcase_16 AC 36 ms
52,748 KB
testcase_17 AC 38 ms
53,852 KB
testcase_18 AC 37 ms
53,420 KB
testcase_19 AC 72 ms
77,004 KB
testcase_20 AC 112 ms
79,404 KB
testcase_21 AC 34 ms
52,064 KB
testcase_22 AC 35 ms
51,884 KB
testcase_23 AC 37 ms
53,080 KB
testcase_24 AC 37 ms
52,884 KB
testcase_25 AC 158 ms
82,280 KB
testcase_26 AC 36 ms
53,000 KB
testcase_27 AC 36 ms
53,180 KB
testcase_28 AC 36 ms
53,080 KB
testcase_29 AC 40 ms
53,000 KB
testcase_30 AC 35 ms
53,452 KB
testcase_31 AC 36 ms
52,576 KB
testcase_32 AC 102 ms
79,520 KB
testcase_33 AC 255 ms
88,564 KB
testcase_34 AC 256 ms
88,444 KB
testcase_35 AC 155 ms
81,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

# すみません
# 念のため再提出
# arrayと内包表記のため速くなっている?

import array

MIN_N = 3
MAX_N = 10 ** 6
MIN_L = 1
MAX_L = 10 ** 7


def sieve_of_eratosthenes(end, typecode="L"):
    assert end > 1
    is_prime = array.array("B", (True for i in range(end)))
    is_prime[0] = False
    is_prime[1] = False
    primes = array.array(typecode)
    for i in range(2, end):
        if is_prime[i]:
            primes.append(i)
            for j in range(2 * i, end, i):
                is_prime[j] = False
    return primes


def count_sequences(n, l):
    d_max = l // (n - 1)
    if d_max < 2:
        return 0
    ds = sieve_of_eratosthenes(d_max + 1)
    return sum(l - (n - 1) * d + 1 for d in ds)


def main():
    n, l = map(int, input().split())
    assert MIN_N <= n <= MAX_N
    assert MIN_L <= l <= MAX_L
    print(count_sequences(n, l))


if __name__ == '__main__':
    main()
0