結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー 👑 rin204rin204
提出日時 2022-01-20 03:03:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 1,000 ms
コード長 364 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 139,648 KB
最終ジャッジ日時 2024-05-02 20:08:45
合計ジャッジ時間 21,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
137,984 KB
testcase_01 AC 518 ms
137,984 KB
testcase_02 AC 522 ms
137,856 KB
testcase_03 AC 521 ms
139,264 KB
testcase_04 AC 512 ms
138,112 KB
testcase_05 AC 556 ms
139,264 KB
testcase_06 AC 538 ms
139,008 KB
testcase_07 AC 515 ms
137,984 KB
testcase_08 AC 511 ms
138,240 KB
testcase_09 AC 520 ms
137,856 KB
testcase_10 AC 515 ms
138,112 KB
testcase_11 AC 528 ms
138,112 KB
testcase_12 AC 523 ms
139,008 KB
testcase_13 AC 517 ms
138,880 KB
testcase_14 AC 530 ms
138,880 KB
testcase_15 AC 513 ms
137,984 KB
testcase_16 AC 512 ms
139,392 KB
testcase_17 AC 519 ms
138,624 KB
testcase_18 AC 519 ms
138,752 KB
testcase_19 AC 519 ms
139,520 KB
testcase_20 AC 532 ms
139,648 KB
testcase_21 AC 521 ms
139,008 KB
testcase_22 AC 515 ms
139,264 KB
testcase_23 AC 523 ms
138,880 KB
testcase_24 AC 531 ms
139,392 KB
testcase_25 AC 533 ms
139,136 KB
testcase_26 AC 536 ms
139,008 KB
testcase_27 AC 520 ms
139,264 KB
testcase_28 AC 526 ms
139,264 KB
testcase_29 AC 560 ms
138,880 KB
testcase_30 AC 527 ms
138,880 KB
testcase_31 AC 524 ms
138,880 KB
testcase_32 AC 540 ms
139,264 KB
testcase_33 AC 559 ms
139,648 KB
testcase_34 AC 555 ms
139,520 KB
testcase_35 AC 552 ms
139,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10000010
isprime = [True] * N
isprime[0] = isprime[1] = False
for i in range(2, int(N ** 0.5 + 1)):
    if not isprime[i]:
        continue
    for j in range(i * i, N, i):
        isprime[j] = False

n, l = map(int, input().split())
ans = 0
for d in range(l):
    if not isprime[d]:
        continue
    x = d * (n - 1)
    ans += max(0, l - x + 1)
print(ans)
0