結果

問題 No.106 素数が嫌い!2
ユーザー 12354865271235486527
提出日時 2020-01-14 17:43:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,025 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 70,820 KB
最終ジャッジ日時 2024-06-07 17:01:41
合計ジャッジ時間 12,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
59,220 KB
testcase_01 AC 471 ms
44,596 KB
testcase_02 AC 474 ms
43,956 KB
testcase_03 AC 479 ms
44,212 KB
testcase_04 AC 753 ms
59,076 KB
testcase_05 AC 1,020 ms
61,920 KB
testcase_06 AC 1,009 ms
61,548 KB
testcase_07 AC 1,015 ms
61,944 KB
testcase_08 AC 512 ms
44,640 KB
testcase_09 AC 517 ms
44,092 KB
testcase_10 AC 1,007 ms
61,556 KB
testcase_11 AC 719 ms
50,928 KB
testcase_12 AC 1,025 ms
70,820 KB
testcase_13 AC 472 ms
44,216 KB
testcase_14 AC 481 ms
44,452 KB
testcase_15 AC 473 ms
44,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def SoE(n):
    if n < 2:
        return
    elif n <= 3:
        return np.arange(2, n+1)
    ret = np.arange(n+1)
    c = int(np.sqrt(n)) + 1
    for i in range(2, c):
        if ret[i] != 0:
            ret[i+i::i] *= 0
    return ret[ret > 1]

N, K = map(int, input().split())
pnl = SoE(N)
nl = np.zeros(N+1)
for pn in pnl:
    nl[pn::pn] += 1
ans = len(nl[nl >= K])
print(ans)
0