結果

問題 No.106 素数が嫌い!2
ユーザー nebukuro09nebukuro09
提出日時 2016-10-26 09:49:19
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 185 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 187,904 KB
最終ジャッジ日時 2024-05-03 06:07:01
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
160,256 KB
testcase_01 AC 67 ms
75,520 KB
testcase_02 AC 69 ms
75,424 KB
testcase_03 AC 65 ms
75,568 KB
testcase_04 AC 139 ms
152,092 KB
testcase_05 AC 131 ms
100,224 KB
testcase_06 AC 129 ms
93,440 KB
testcase_07 AC 128 ms
93,312 KB
testcase_08 AC 89 ms
87,224 KB
testcase_09 AC 83 ms
78,848 KB
testcase_10 AC 129 ms
93,512 KB
testcase_11 AC 95 ms
84,608 KB
testcase_12 AC 185 ms
187,904 KB
testcase_13 AC 69 ms
75,520 KB
testcase_14 AC 70 ms
75,552 KB
testcase_15 AC 71 ms
76,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N, K = map(int, raw_input().split())
table = [0 for i in xrange(N+1)]

for i in xrange(2, N+1):
    if table[i] > 0:
        continue
    for j in xrange(i, N+1, i):
        table[j] += 1

print len([t for t in table if t >= K])
0