結果

問題 No.106 素数が嫌い!2
ユーザー nanaenanae
提出日時 2017-01-08 19:16:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,392 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-05-09 23:30:51
合計ジャッジ時間 12,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
18,688 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 1,336 ms
47,488 KB
testcase_05 AC 1,663 ms
29,824 KB
testcase_06 AC 1,579 ms
26,624 KB
testcase_07 AC 1,618 ms
26,496 KB
testcase_08 AC 173 ms
15,616 KB
testcase_09 AC 127 ms
11,904 KB
testcase_10 AC 1,612 ms
26,496 KB
testcase_11 AC 707 ms
17,920 KB
testcase_12 AC 2,392 ms
64,768 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder No.106 素数が嫌い!2

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

dp = [0 for i in range(N + 1)]

if K == 1:
    print(N - 2 + 1)
else:
    ans = 0

    for i in range(2, (N + 1) // 2 + 1):
        if dp[i] == 0:
            for j in range(i, N + 1, i):
                dp[j] += 1

                if dp[j] >= K:
                    ans += 1
                    dp[j] = -N

    print(ans)
0