結果

問題 No.106 素数が嫌い!2
ユーザー pluto77pluto77
提出日時 2016-03-28 13:57:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 234,496 KB
最終ジャッジ日時 2024-10-02 06:19:41
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
233,984 KB
testcase_01 AC 151 ms
232,448 KB
testcase_02 AC 151 ms
232,500 KB
testcase_03 AC 152 ms
232,192 KB
testcase_04 AC 181 ms
234,144 KB
testcase_05 AC 224 ms
234,240 KB
testcase_06 AC 212 ms
233,936 KB
testcase_07 AC 218 ms
234,284 KB
testcase_08 AC 164 ms
234,040 KB
testcase_09 AC 162 ms
234,200 KB
testcase_10 AC 208 ms
233,856 KB
testcase_11 AC 178 ms
233,984 KB
testcase_12 AC 221 ms
234,496 KB
testcase_13 AC 153 ms
232,368 KB
testcase_14 AC 154 ms
232,704 KB
testcase_15 AC 154 ms
232,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_106

n,k=map(int,raw_input().split())
s=[0 for i in xrange(20000001)]


for i in xrange(2,n+1):
 if s[i]==0:
  for j in xrange(i,n+1,i):
   s[j]+=1
   
res=0
for i in xrange(2,n+1):
 if s[i]>=k:
  res+=1

print res
0