結果

問題 No.106 素数が嫌い!2
ユーザー tnoda_tnoda_
提出日時 2015-08-10 12:37:45
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,289 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 21,996 KB
最終ジャッジ日時 2024-07-18 06:29:03
合計ジャッジ時間 10,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 649 ms
14,112 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 604 ms
13,876 KB
testcase_05 AC 1,261 ms
21,996 KB
testcase_06 AC 1,234 ms
21,880 KB
testcase_07 AC 1,233 ms
21,892 KB
testcase_08 AC 84 ms
7,296 KB
testcase_09 AC 83 ms
7,424 KB
testcase_10 AC 1,264 ms
21,956 KB
testcase_11 AC 517 ms
13,164 KB
testcase_12 AC 1,289 ms
21,328 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 10 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, raw_input().strip().split())
npf = [0] * (N+1)
for i in xrange(2, N+1):
    if npf[i] == 0:
        for j in xrange(i, N+1, i):
            npf[j] += 1
ans = 0
for i in xrange(2, N+1):
    if npf[i] >= K:
        ans += 1
print(ans)
0