結果

問題 No.106 素数が嫌い!2
ユーザー threepipes_sthreepipes_s
提出日時 2016-01-03 03:40:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,001 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-09-19 10:43:45
合計ジャッジ時間 14,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 992 ms
26,368 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 975 ms
25,728 KB
testcase_05 AC 1,870 ms
27,264 KB
testcase_06 AC 1,893 ms
26,496 KB
testcase_07 AC 2,001 ms
26,368 KB
testcase_08 AC 133 ms
12,800 KB
testcase_09 AC 138 ms
11,904 KB
testcase_10 AC 1,891 ms
26,368 KB
testcase_11 AC 842 ms
17,664 KB
testcase_12 AC 1,842 ms
35,456 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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