結果

問題 No.106 素数が嫌い!2
ユーザー matriematrie
提出日時 2020-12-23 08:32:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,179 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 75,132 KB
最終ジャッジ日時 2024-09-21 16:16:47
合計ジャッジ時間 21,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,303 ms
59,408 KB
testcase_01 AC 479 ms
44,304 KB
testcase_02 AC 479 ms
44,440 KB
testcase_03 AC 485 ms
44,044 KB
testcase_04 AC 1,366 ms
59,380 KB
testcase_05 AC 2,179 ms
74,736 KB
testcase_06 AC 2,126 ms
74,932 KB
testcase_07 AC 2,177 ms
74,844 KB
testcase_08 AC 584 ms
44,824 KB
testcase_09 AC 593 ms
44,756 KB
testcase_10 AC 2,163 ms
75,132 KB
testcase_11 AC 1,194 ms
57,544 KB
testcase_12 AC 2,107 ms
73,544 KB
testcase_13 AC 466 ms
43,920 KB
testcase_14 AC 467 ms
44,152 KB
testcase_15 AC 471 ms
43,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n,k=map(int,input().split())
l=np.array([0]*n)
for i in range(2,n+1):
	if l[i-1]<1: l[i-1::i]+=1
print(sum(x>=k for x in l[1:]))
0