結果

問題 No.106 素数が嫌い!2
ユーザー TawaraTawara
提出日時 2015-09-15 18:11:16
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-07-19 06:37:20
合計ジャッジ時間 9,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
29,568 KB
testcase_01 WA -
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,287 ms
68,736 KB
testcase_07 AC 1,237 ms
52,992 KB
testcase_08 WA -
testcase_09 AC 85 ms
9,472 KB
testcase_10 AC 1,305 ms
52,992 KB
testcase_11 AC 515 ms
33,664 KB
testcase_12 WA -
testcase_13 AC 9 ms
6,272 KB
testcase_14 AC 9 ms
6,144 KB
testcase_15 AC 9 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N,K = map(int,raw_input().split())
fn = [1]*(N+1)
fn[0] = fn[1] = 0
is_p = [True]*(N+1)
for f in xrange(2,int(math.sqrt(N))+1):
	if not is_p[f]:continue
	d = f*2
	while d <= N:
		if is_p[d]:
			is_p[d] = False
		else:
			fn[d] += 1
		d += f
print len(filter(lambda x:x>=K,fn))
0