結果

問題 No.106 素数が嫌い!2
ユーザー _matumo__matumo_
提出日時 2020-12-21 17:19:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,434 ms / 5,000 ms
コード長 159 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-09-21 13:01:04
合計ジャッジ時間 10,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 677 ms
18,432 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 703 ms
18,560 KB
testcase_05 AC 1,399 ms
26,240 KB
testcase_06 AC 1,405 ms
26,240 KB
testcase_07 AC 1,434 ms
26,368 KB
testcase_08 AC 103 ms
11,648 KB
testcase_09 AC 109 ms
11,776 KB
testcase_10 AC 1,352 ms
26,368 KB
testcase_11 AC 607 ms
17,280 KB
testcase_12 AC 1,404 ms
25,600 KB
testcase_13 AC 35 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
p=[0]*(N+1)
for i in range(2,N+1):
    if p[i]<1:
        for j in range(i,N+1,i):
            p[j]+=1
print(sum(i>=K for i in p))
0