結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー titiatitia
提出日時 2023-02-27 05:58:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 1,000 ms
コード長 501 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 187,264 KB
最終ジャッジ日時 2024-09-14 16:21:18
合計ジャッジ時間 20,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
186,112 KB
testcase_01 AC 499 ms
186,112 KB
testcase_02 AC 500 ms
186,752 KB
testcase_03 AC 506 ms
186,624 KB
testcase_04 AC 503 ms
186,624 KB
testcase_05 AC 503 ms
186,496 KB
testcase_06 AC 515 ms
186,240 KB
testcase_07 AC 508 ms
185,856 KB
testcase_08 AC 508 ms
186,496 KB
testcase_09 AC 511 ms
186,368 KB
testcase_10 AC 507 ms
186,624 KB
testcase_11 AC 513 ms
185,856 KB
testcase_12 AC 519 ms
186,240 KB
testcase_13 AC 505 ms
185,984 KB
testcase_14 AC 505 ms
186,240 KB
testcase_15 AC 516 ms
186,240 KB
testcase_16 AC 501 ms
185,984 KB
testcase_17 AC 505 ms
186,752 KB
testcase_18 AC 507 ms
186,112 KB
testcase_19 AC 513 ms
186,880 KB
testcase_20 AC 506 ms
186,752 KB
testcase_21 AC 504 ms
186,368 KB
testcase_22 AC 493 ms
186,240 KB
testcase_23 AC 505 ms
186,112 KB
testcase_24 AC 506 ms
186,368 KB
testcase_25 AC 502 ms
186,752 KB
testcase_26 AC 499 ms
186,112 KB
testcase_27 AC 505 ms
186,368 KB
testcase_28 AC 495 ms
186,112 KB
testcase_29 AC 496 ms
186,112 KB
testcase_30 AC 499 ms
186,240 KB
testcase_31 AC 503 ms
186,112 KB
testcase_32 AC 503 ms
186,752 KB
testcase_33 AC 507 ms
186,752 KB
testcase_34 AC 505 ms
187,264 KB
testcase_35 AC 500 ms
186,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,LL=map(int,input().split())

x=10**7+1

import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]

ANS=0

for p in Primes:
    x=p*(N-1)

    if x<=LL:
        ANS+=(LL-x+1)
    else:
        break

print(ANS)
0