結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー ronpooronpoo
提出日時 2023-10-30 13:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 1,000 ms
コード長 467 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 156,724 KB
最終ジャッジ日時 2024-09-25 17:13:58
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,768 KB
testcase_01 AC 39 ms
53,216 KB
testcase_02 AC 39 ms
53,032 KB
testcase_03 AC 53 ms
64,808 KB
testcase_04 AC 40 ms
52,384 KB
testcase_05 AC 39 ms
52,568 KB
testcase_06 AC 41 ms
52,700 KB
testcase_07 AC 40 ms
52,724 KB
testcase_08 AC 39 ms
53,556 KB
testcase_09 AC 40 ms
52,524 KB
testcase_10 AC 40 ms
52,456 KB
testcase_11 AC 40 ms
53,200 KB
testcase_12 AC 39 ms
52,436 KB
testcase_13 AC 39 ms
52,412 KB
testcase_14 AC 45 ms
58,668 KB
testcase_15 AC 40 ms
52,476 KB
testcase_16 AC 39 ms
52,640 KB
testcase_17 AC 39 ms
52,836 KB
testcase_18 AC 40 ms
53,336 KB
testcase_19 AC 66 ms
72,656 KB
testcase_20 AC 114 ms
91,184 KB
testcase_21 AC 39 ms
53,156 KB
testcase_22 AC 39 ms
53,700 KB
testcase_23 AC 41 ms
53,396 KB
testcase_24 AC 42 ms
53,708 KB
testcase_25 AC 153 ms
110,716 KB
testcase_26 AC 39 ms
53,156 KB
testcase_27 AC 39 ms
52,496 KB
testcase_28 AC 39 ms
52,632 KB
testcase_29 AC 38 ms
53,584 KB
testcase_30 AC 39 ms
52,820 KB
testcase_31 AC 40 ms
52,632 KB
testcase_32 AC 91 ms
86,312 KB
testcase_33 AC 284 ms
156,724 KB
testcase_34 AC 281 ms
156,400 KB
testcase_35 AC 134 ms
106,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def prime(x):
    prime = [x if x%2==1 else 2 for x in range(x+1)]
    prime[0] = 1

    for i in range(3, int(x**0.5)+2, 2):
        if prime[i] != i:
            continue   
        for j in range(2*i, x+1, i):
            if prime[j] == j:
                prime[j] = i

    p = {i for i in range(2, x+1) if prime[i] == i}
    return p

ans = 0
P = prime(L//(N-1)+10)
for p in P:
    a = max(0, L+1-(N-1)*p)
    ans += a
print(ans)
0