結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー syunsukesyunsuke
提出日時 2019-09-18 23:07:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 393 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-07-17 21:34:37
合計ジャッジ時間 28,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 951 ms
26,624 KB
testcase_01 AC 938 ms
26,496 KB
testcase_02 AC 935 ms
26,496 KB
testcase_03 TLE -
testcase_04 AC 942 ms
26,624 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 929 ms
26,496 KB
testcase_08 AC 946 ms
26,496 KB
testcase_09 AC 969 ms
26,624 KB
testcase_10 AC 936 ms
26,496 KB
testcase_11 AC 954 ms
26,496 KB
testcase_12 AC 935 ms
26,496 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 960 ms
26,496 KB
testcase_16 TLE -
testcase_17 AC 971 ms
26,496 KB
testcase_18 AC 948 ms
26,624 KB
testcase_19 TLE -
testcase_20 RE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 TLE -
testcase_28 RE -
testcase_29 RE -
testcase_30 TLE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S=[1 for i in range(2*10**6+1)]
S[0]=0
S[1]=0
for i in range(2,2*10**6):
    if S[i]==1:
        for j in range(2,2*10**6):
            if i*j>L:
                break
            else:
                S[i*j]=0
#print(S[:6])
ans=0
for i in range(L):
    if S[i]==1:
        if (N-1)*i<=L:
            ans+=(L-(N-1)*i+1)
        else:
            break
print(ans)
0