結果

問題 No.106 素数が嫌い!2
ユーザー nanaenanae
提出日時 2017-03-19 14:28:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,324 KB
最終ジャッジ日時 2024-07-04 23:34:41
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 823 ms
26,324 KB
testcase_07 AC 861 ms
26,164 KB
testcase_08 WA -
testcase_09 AC 80 ms
11,776 KB
testcase_10 AC 860 ms
26,240 KB
testcase_11 AC 358 ms
17,436 KB
testcase_12 WA -
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

if K == 1:
    print(N - 2 + 1)
    quit()

dp = [0] * (N + 1)

for p in range(2, N + 1):
    if p**2 > N:
        break
    if dp[p] > 0:
        continue
    for m in range(p, N + 1, p):
        dp[m] += 1

ans = 0

for d in dp:
    if d >= K:
        ans += 1

print(ans)
0