結果

問題 No.106 素数が嫌い!2
ユーザー TawaraTawara
提出日時 2015-09-15 18:19:33
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2024-07-19 06:37:35
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
100,736 KB
testcase_01 WA -
testcase_02 AC 81 ms
75,260 KB
testcase_03 AC 81 ms
75,520 KB
testcase_04 AC 186 ms
100,992 KB
testcase_05 AC 315 ms
111,104 KB
testcase_06 AC 314 ms
109,268 KB
testcase_07 AC 315 ms
109,012 KB
testcase_08 AC 102 ms
80,568 KB
testcase_09 AC 104 ms
80,000 KB
testcase_10 AC 314 ms
108,772 KB
testcase_11 AC 184 ms
91,388 KB
testcase_12 AC 330 ms
117,632 KB
testcase_13 AC 80 ms
75,520 KB
testcase_14 AC 81 ms
75,264 KB
testcase_15 AC 83 ms
76,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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,N/2):
	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