結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 891 ms
18,560 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 1,047 ms
18,560 KB
testcase_05 AC 1,731 ms
26,496 KB
testcase_06 AC 1,758 ms
26,496 KB
testcase_07 AC 1,688 ms
26,368 KB
testcase_08 AC 137 ms
11,776 KB
testcase_09 AC 134 ms
11,776 KB
testcase_10 AC 1,692 ms
26,496 KB
testcase_11 AC 816 ms
17,408 KB
testcase_12 AC 1,796 ms
25,728 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 26 ms
10,496 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
c = 0
for i in p:
    if i>=k: c+=1
print(c)
0