結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
137,728 KB
testcase_01 AC 523 ms
137,856 KB
testcase_02 AC 519 ms
137,984 KB
testcase_03 AC 535 ms
139,648 KB
testcase_04 AC 522 ms
138,240 KB
testcase_05 AC 555 ms
138,624 KB
testcase_06 AC 541 ms
138,880 KB
testcase_07 AC 518 ms
138,112 KB
testcase_08 AC 521 ms
137,984 KB
testcase_09 AC 516 ms
137,984 KB
testcase_10 AC 521 ms
137,984 KB
testcase_11 AC 514 ms
138,496 KB
testcase_12 AC 522 ms
139,008 KB
testcase_13 AC 517 ms
138,880 KB
testcase_14 AC 522 ms
139,136 KB
testcase_15 AC 522 ms
137,728 KB
testcase_16 AC 530 ms
138,880 KB
testcase_17 AC 521 ms
138,752 KB
testcase_18 AC 523 ms
138,624 KB
testcase_19 AC 520 ms
139,264 KB
testcase_20 AC 532 ms
139,264 KB
testcase_21 AC 521 ms
138,752 KB
testcase_22 AC 524 ms
138,880 KB
testcase_23 AC 529 ms
139,136 KB
testcase_24 AC 532 ms
139,008 KB
testcase_25 AC 540 ms
139,520 KB
testcase_26 AC 544 ms
139,136 KB
testcase_27 AC 526 ms
138,880 KB
testcase_28 AC 648 ms
138,880 KB
testcase_29 AC 658 ms
139,520 KB
testcase_30 AC 638 ms
139,136 KB
testcase_31 AC 534 ms
139,008 KB
testcase_32 AC 538 ms
139,392 KB
testcase_33 AC 554 ms
139,520 KB
testcase_34 AC 562 ms
139,520 KB
testcase_35 AC 564 ms
139,264 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