結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー H3PO4H3PO4
提出日時 2020-07-23 09:35:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 703 ms / 1,000 ms
コード長 478 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,712 KB
最終ジャッジ日時 2024-09-27 05:01:30
合計ジャッジ時間 22,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
44,124 KB
testcase_01 AC 518 ms
44,248 KB
testcase_02 AC 514 ms
43,988 KB
testcase_03 AC 519 ms
43,736 KB
testcase_04 AC 508 ms
43,612 KB
testcase_05 AC 512 ms
43,872 KB
testcase_06 AC 514 ms
43,740 KB
testcase_07 AC 517 ms
44,124 KB
testcase_08 AC 521 ms
44,376 KB
testcase_09 AC 514 ms
43,740 KB
testcase_10 AC 513 ms
44,172 KB
testcase_11 AC 512 ms
43,876 KB
testcase_12 AC 515 ms
43,740 KB
testcase_13 AC 515 ms
43,996 KB
testcase_14 AC 511 ms
43,860 KB
testcase_15 AC 510 ms
44,008 KB
testcase_16 AC 509 ms
43,744 KB
testcase_17 AC 508 ms
43,608 KB
testcase_18 AC 509 ms
43,868 KB
testcase_19 AC 525 ms
44,248 KB
testcase_20 AC 571 ms
48,220 KB
testcase_21 AC 513 ms
44,004 KB
testcase_22 AC 520 ms
44,116 KB
testcase_23 AC 525 ms
43,788 KB
testcase_24 AC 519 ms
44,000 KB
testcase_25 AC 623 ms
51,924 KB
testcase_26 AC 520 ms
43,868 KB
testcase_27 AC 516 ms
44,376 KB
testcase_28 AC 509 ms
43,872 KB
testcase_29 AC 512 ms
43,740 KB
testcase_30 AC 512 ms
43,740 KB
testcase_31 AC 509 ms
43,612 KB
testcase_32 AC 557 ms
46,560 KB
testcase_33 AC 699 ms
63,700 KB
testcase_34 AC 703 ms
63,712 KB
testcase_35 AC 604 ms
50,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def primes_np(n):
    is_prime = np.ones(n + 1, dtype=bool)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n ** 0.5) + 1):
        if not is_prime[i]:
            continue
        is_prime[i * 2:n + 1:i] = False
    return np.where(is_prime)[0].tolist()


N, L = map(int, input().split())
ans = 0
for d in primes_np(L // (N - 1) + 1):
    length = (N - 1) * d
    if length > L:
        break
    ans += L - length + 1
print(ans)
0