結果

問題 No.106 素数が嫌い!2
ユーザー kokatsukokatsu
提出日時 2022-01-13 22:36:07
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 300 ms / 5,000 ms
コード長 582 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 205,996 KB
実行使用メモリ 19,112 KB
最終ジャッジ日時 2024-06-22 14:02:06
合計ジャッジ時間 4,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
12,136 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 137 ms
11,064 KB
testcase_05 AC 286 ms
18,352 KB
testcase_06 AC 300 ms
18,400 KB
testcase_07 AC 289 ms
19,112 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 19 ms
6,940 KB
testcase_10 AC 280 ms
18,520 KB
testcase_11 AC 121 ms
10,584 KB
testcase_12 AC 272 ms
17,884 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N, K;
    readf("%d %d\n", N, K);

    auto lpf = iota(N+1).array;
    foreach (i; 2 .. N+1) {
        if (lpf[i] != i) continue;

        foreach (j; iota(i*i, N+1, i)) {
            if (lpf[j] != j) continue;

            lpf[j] = i;
        }
    }

    long res;
    foreach (i; 2 .. N+1) {
        long num = i, cnt;
        while (num > 1) {
            ++cnt;

            long p = lpf[num];
            while (num % p == 0) {
                num /= lpf[num];
            }
        }

        if (cnt >= K) ++res;
    }

    res.writeln;
}
0