結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー rlangevinrlangevin
提出日時 2023-01-14 00:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 643 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 242,688 KB
最終ジャッジ日時 2024-06-07 00:49:53
合計ジャッジ時間 24,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 643 ms
241,664 KB
testcase_01 AC 621 ms
241,536 KB
testcase_02 AC 601 ms
241,408 KB
testcase_03 AC 609 ms
242,176 KB
testcase_04 AC 636 ms
241,280 KB
testcase_05 AC 608 ms
241,408 KB
testcase_06 AC 596 ms
241,280 KB
testcase_07 AC 598 ms
241,152 KB
testcase_08 AC 609 ms
241,152 KB
testcase_09 AC 599 ms
241,664 KB
testcase_10 AC 599 ms
241,280 KB
testcase_11 AC 600 ms
241,280 KB
testcase_12 AC 594 ms
241,664 KB
testcase_13 AC 597 ms
241,280 KB
testcase_14 AC 609 ms
241,280 KB
testcase_15 AC 610 ms
241,408 KB
testcase_16 AC 615 ms
241,408 KB
testcase_17 AC 602 ms
241,280 KB
testcase_18 AC 611 ms
241,664 KB
testcase_19 AC 605 ms
242,432 KB
testcase_20 AC 605 ms
242,432 KB
testcase_21 AC 618 ms
241,664 KB
testcase_22 AC 610 ms
241,152 KB
testcase_23 AC 610 ms
241,536 KB
testcase_24 AC 616 ms
241,280 KB
testcase_25 AC 611 ms
242,176 KB
testcase_26 AC 613 ms
241,408 KB
testcase_27 AC 613 ms
241,280 KB
testcase_28 AC 612 ms
241,280 KB
testcase_29 AC 619 ms
241,664 KB
testcase_30 AC 616 ms
241,408 KB
testcase_31 AC 617 ms
241,152 KB
testcase_32 AC 632 ms
242,688 KB
testcase_33 AC 630 ms
242,432 KB
testcase_34 AC 625 ms
242,176 KB
testcase_35 AC 628 ms
242,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *


def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


N, L = map(int, input().split())
S = Sieve(10 ** 7 + 5)
ans = 0
for s in S:
    ans += max(0, L - s * (N - 1) + 1)
print(ans)
0