結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-16 17:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 1,000 ms
コード長 508 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 186,624 KB
最終ジャッジ日時 2024-10-09 14:36:34
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 80 ms
72,960 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 504 ms
181,760 KB
testcase_06 AC 289 ms
127,104 KB
testcase_07 AC 41 ms
52,124 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 45 ms
57,600 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 45 ms
59,136 KB
testcase_13 AC 41 ms
58,368 KB
testcase_14 AC 44 ms
59,264 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 41 ms
58,240 KB
testcase_17 AC 42 ms
57,920 KB
testcase_18 AC 40 ms
57,936 KB
testcase_19 AC 79 ms
72,960 KB
testcase_20 AC 170 ms
100,352 KB
testcase_21 AC 101 ms
76,288 KB
testcase_22 AC 94 ms
73,216 KB
testcase_23 AC 128 ms
84,608 KB
testcase_24 AC 201 ms
98,688 KB
testcase_25 AC 256 ms
125,824 KB
testcase_26 AC 250 ms
124,928 KB
testcase_27 AC 70 ms
68,864 KB
testcase_28 AC 120 ms
87,680 KB
testcase_29 AC 250 ms
123,136 KB
testcase_30 AC 71 ms
70,528 KB
testcase_31 AC 203 ms
111,232 KB
testcase_32 AC 256 ms
124,800 KB
testcase_33 AC 507 ms
186,624 KB
testcase_34 AC 507 ms
186,624 KB
testcase_35 AC 457 ms
178,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, l = map(int, input().split())

import math

def sieve(n):
    ass = []
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, int(math.sqrt(n))+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    for i in range(n+1):
        if is_prime[i]:
            ass.append(i)
    return(ass)

S = sieve(l)
ans = 0
for d in S:
    if l-(n-1)*d < 0:
        break
    ans += l-(n-1)*d+1
print(ans)
0