結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー ntudantuda
提出日時 2024-11-28 22:42:20
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 514 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 537,316 KB
最終ジャッジ日時 2024-11-28 22:42:34
合計ジャッジ時間 14,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
57,728 KB
testcase_01 MLE -
testcase_02 AC 33 ms
57,088 KB
testcase_03 MLE -
testcase_04 AC 33 ms
56,960 KB
testcase_05 AC 32 ms
53,212 KB
testcase_06 AC 32 ms
53,948 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 33 ms
52,608 KB
testcase_11 AC 32 ms
52,096 KB
testcase_12 AC 32 ms
51,840 KB
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 45 ms
58,624 KB
testcase_15 AC 35 ms
52,316 KB
testcase_16 AC 33 ms
52,224 KB
testcase_17 AC 33 ms
51,840 KB
testcase_18 AC 33 ms
52,096 KB
testcase_19 AC 357 ms
175,872 KB
testcase_20 TLE -
testcase_21 AC 33 ms
52,096 KB
testcase_22 AC 32 ms
52,096 KB
testcase_23 AC 32 ms
52,352 KB
testcase_24 AC 32 ms
52,096 KB
testcase_25 TLE -
testcase_26 AC 33 ms
52,224 KB
testcase_27 AC 32 ms
52,096 KB
testcase_28 AC 33 ms
52,352 KB
testcase_29 AC 32 ms
52,224 KB
testcase_30 AC 34 ms
52,224 KB
testcase_31 AC 32 ms
52,352 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    if N == 1:
        return []
    max = int(N**0.5)
    seachList = [i for i in range(2,N+1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

N,L = map(int,input().split())
if L // (N-1) > 1:
    PL = seachPrimeNum(L//(N-1))
else:
    print(0)
    exit()
ans = 0
for p in PL:
    ans += (L-p*(N-1)+1)
print(ans)
0