結果

問題 No.106 素数が嫌い!2
ユーザー matriematrie
提出日時 2020-12-23 09:08:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,737 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-09-21 16:17:02
合計ジャッジ時間 13,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 867 ms
18,492 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 815 ms
18,404 KB
testcase_05 AC 1,669 ms
26,240 KB
testcase_06 AC 1,721 ms
26,148 KB
testcase_07 AC 1,669 ms
26,208 KB
testcase_08 AC 133 ms
11,648 KB
testcase_09 AC 132 ms
11,776 KB
testcase_10 AC 1,722 ms
26,240 KB
testcase_11 AC 715 ms
17,536 KB
testcase_12 AC 1,737 ms
25,580 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 26 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
p=[0]*n
for i in range(2,n+1):
	if p[i-1]<1:
		t=i-1
		while t<n:
			p[t]+=1
			t+=i
print(sum(x>=k for x in p))
0