結果

問題 No.106 素数が嫌い!2
ユーザー elpheelphe
提出日時 2024-07-10 18:10:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 73,704 KB
実行使用メモリ 11,108 KB
最終ジャッジ日時 2024-07-10 18:10:49
合計ジャッジ時間 2,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,100 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 11 ms
7,100 KB
testcase_05 AC 19 ms
11,076 KB
testcase_06 AC 18 ms
11,108 KB
testcase_07 AC 19 ms
10,892 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 19 ms
10,872 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 17 ms
10,736 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N, K, i, j, ans = 0;
    cin >> N >> K;
    vector<int> count(N + 1, 0);

    for (i = 2; i <= N; ++i)
    {
        if (count[i] == 0)
        {
            count[i] = 1;
            for (j = i * 2; j <= N; j += i)
                ++count[j];
        }

        if (count[i] >= K)
            ++ans;
    }

    cout << ans << '\n';
    return 0;
}
0