結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー convexineqconvexineq
提出日時 2021-02-10 00:17:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 1,000 ms
コード長 406 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 168,424 KB
最終ジャッジ日時 2024-07-07 05:42:56
合計ジャッジ時間 4,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,236 KB
testcase_01 AC 35 ms
53,944 KB
testcase_02 AC 33 ms
52,452 KB
testcase_03 AC 53 ms
73,452 KB
testcase_04 AC 31 ms
52,676 KB
testcase_05 AC 213 ms
161,768 KB
testcase_06 AC 126 ms
116,920 KB
testcase_07 AC 31 ms
52,736 KB
testcase_08 AC 31 ms
53,312 KB
testcase_09 AC 31 ms
52,952 KB
testcase_10 AC 30 ms
52,636 KB
testcase_11 AC 31 ms
52,808 KB
testcase_12 AC 39 ms
62,344 KB
testcase_13 AC 35 ms
58,896 KB
testcase_14 AC 37 ms
60,384 KB
testcase_15 AC 30 ms
52,072 KB
testcase_16 AC 30 ms
53,420 KB
testcase_17 AC 30 ms
52,504 KB
testcase_18 AC 31 ms
53,764 KB
testcase_19 AC 53 ms
71,756 KB
testcase_20 AC 88 ms
93,292 KB
testcase_21 AC 56 ms
75,252 KB
testcase_22 AC 53 ms
72,780 KB
testcase_23 AC 67 ms
81,360 KB
testcase_24 AC 85 ms
92,748 KB
testcase_25 AC 120 ms
113,456 KB
testcase_26 AC 122 ms
114,008 KB
testcase_27 AC 47 ms
68,532 KB
testcase_28 AC 70 ms
84,120 KB
testcase_29 AC 119 ms
112,832 KB
testcase_30 AC 50 ms
70,176 KB
testcase_31 AC 103 ms
103,952 KB
testcase_32 AC 130 ms
116,124 KB
testcase_33 AC 225 ms
168,100 KB
testcase_34 AC 227 ms
168,424 KB
testcase_35 AC 210 ms
159,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

n,L = map(int,input().split())
ans = sum(max(0,L-p*(n-1)+1) for p in Eratosthenes(L//2+2))
print(ans)
0