結果

問題 No.106 素数が嫌い!2
ユーザー nanaenanae
提出日時 2017-01-08 19:16:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,117 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-12-17 18:09:27
合計ジャッジ時間 11,623 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
18,688 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 1,206 ms
47,488 KB
testcase_05 AC 1,541 ms
29,824 KB
testcase_06 AC 1,564 ms
26,368 KB
testcase_07 AC 1,554 ms
26,368 KB
testcase_08 AC 152 ms
15,616 KB
testcase_09 AC 112 ms
11,776 KB
testcase_10 AC 1,516 ms
26,368 KB
testcase_11 AC 585 ms
17,792 KB
testcase_12 AC 2,117 ms
64,768 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 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