結果

問題 No.106 素数が嫌い!2
ユーザー maimai
提出日時 2018-01-23 20:36:37
言語 cLay
(20240714-1)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 1,954 ms
コンパイル使用メモリ 175,124 KB
実行使用メモリ 10,928 KB
最終ジャッジ日時 2024-07-05 12:56:23
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,040 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 11 ms
6,976 KB
testcase_05 AC 21 ms
10,864 KB
testcase_06 AC 20 ms
10,716 KB
testcase_07 AC 19 ms
10,908 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 20 ms
10,928 KB
testcase_11 AC 9 ms
6,528 KB
testcase_12 AC 18 ms
10,472 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void gen_primelist(vector<int>& out, ll high) {
    out.resize(high + 1);
    out[0] = out[1] = 1;
    for (ll i = 2; i <= high; i++) {
        if (out[i] == 0) {
            for (ll j = i; j <= high; j += i) { // i*i
                out[j] += 1;
            }
        }
    }
}


{
    ll N,K;rd(N,K);
    vector<int> p;
    gen_primelist(p,N);
    ll cnt=0;
    REP(i,2,N+1) cnt+=p[i]>=K;
    wt(cnt);
}
0