結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー lloyzlloyz
提出日時 2023-01-20 00:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 630 ms / 1,000 ms
コード長 376 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 183,672 KB
最終ジャッジ日時 2024-06-22 16:48:11
合計ジャッジ時間 24,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 612 ms
183,140 KB
testcase_01 AC 600 ms
183,012 KB
testcase_02 AC 596 ms
183,144 KB
testcase_03 AC 607 ms
183,008 KB
testcase_04 AC 614 ms
183,068 KB
testcase_05 AC 605 ms
183,300 KB
testcase_06 AC 599 ms
183,288 KB
testcase_07 AC 598 ms
182,956 KB
testcase_08 AC 600 ms
183,040 KB
testcase_09 AC 614 ms
183,028 KB
testcase_10 AC 593 ms
183,124 KB
testcase_11 AC 593 ms
182,948 KB
testcase_12 AC 600 ms
183,276 KB
testcase_13 AC 617 ms
183,076 KB
testcase_14 AC 621 ms
183,616 KB
testcase_15 AC 600 ms
183,124 KB
testcase_16 AC 601 ms
182,956 KB
testcase_17 AC 593 ms
183,292 KB
testcase_18 AC 606 ms
183,016 KB
testcase_19 AC 597 ms
183,288 KB
testcase_20 AC 594 ms
183,376 KB
testcase_21 AC 604 ms
183,272 KB
testcase_22 AC 611 ms
183,172 KB
testcase_23 AC 597 ms
183,300 KB
testcase_24 AC 595 ms
183,124 KB
testcase_25 AC 592 ms
183,272 KB
testcase_26 AC 630 ms
182,976 KB
testcase_27 AC 630 ms
183,288 KB
testcase_28 AC 600 ms
183,020 KB
testcase_29 AC 608 ms
183,272 KB
testcase_30 AC 622 ms
183,292 KB
testcase_31 AC 596 ms
183,672 KB
testcase_32 AC 599 ms
183,192 KB
testcase_33 AC 613 ms
183,060 KB
testcase_34 AC 610 ms
183,612 KB
testcase_35 AC 618 ms
183,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

IsPrime = [True for _ in range(10**7 + 1)]
IsPrime[0] = IsPrime[1] = False
Primes = []
for p in range(2, 10**7 + 1):
    if IsPrime[p]:
        Primes.append(p)
        for i in range(p * p, 10**7 + 1, p):
            IsPrime[i] = False

n, l = map(int, input().split())
ans = 0
for p in Primes:
    if p * (n - 1) > l:
        break
    ans += l - p * (n - 1) + 1
print(ans)
0