結果

問題 No.106 素数が嫌い!2
ユーザー TawaraTawara
提出日時 2015-09-15 18:25:51
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,154 ms / 5,000 ms
コード長 167 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 52,992 KB
最終ジャッジ日時 2024-07-19 06:38:01
合計ジャッジ時間 8,345 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 484 ms
21,800 KB
testcase_01 AC 9 ms
6,144 KB
testcase_02 AC 9 ms
6,016 KB
testcase_03 AC 10 ms
6,016 KB
testcase_04 AC 478 ms
22,144 KB
testcase_05 AC 1,044 ms
51,968 KB
testcase_06 AC 1,043 ms
52,992 KB
testcase_07 AC 1,154 ms
37,268 KB
testcase_08 AC 73 ms
8,192 KB
testcase_09 AC 77 ms
8,448 KB
testcase_10 AC 1,070 ms
37,376 KB
testcase_11 AC 445 ms
26,752 KB
testcase_12 AC 1,021 ms
41,344 KB
testcase_13 AC 10 ms
6,144 KB
testcase_14 AC 10 ms
6,016 KB
testcase_15 AC 10 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,raw_input().split())
fn = [0]*(N+1)
for i in xrange(2,N+1):
	if fn[i] == 0:
		for j in xrange(i,N+1,i):
			fn[j] += 1
print len(filter(lambda x:x>=K,fn))
0