結果

問題 No.106 素数が嫌い!2
ユーザー maimai
提出日時 2018-01-23 20:07:56
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 175,672 KB
実行使用メモリ 10,932 KB
最終ジャッジ日時 2024-07-05 12:54:49
合計ジャッジ時間 2,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 12 ms
10,932 KB
testcase_07 AC 12 ms
10,908 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 12 ms
10,852 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void gen_primelist(vector<int>& out, ll high) {
    out.resize(high + 1);
    out[0] = out[1] = 1;
    ll sqh = (ll)sqrt(high);
    for (ll i = 2; i <= sqh; i++) {
        if (out[i] == 0) {
            for (ll j = i*2; 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,N+1) cnt+=p[i]>=K;
    wt(cnt);
}
0