結果

問題 No.106 素数が嫌い!2
ユーザー krotonkroton
提出日時 2014-12-18 23:16:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 54,356 KB
実行使用メモリ 19,104 KB
最終ジャッジ日時 2024-06-12 01:16:53
合計ジャッジ時間 1,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,392 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 15 ms
11,136 KB
testcase_05 AC 28 ms
19,072 KB
testcase_06 AC 27 ms
19,104 KB
testcase_07 AC 28 ms
18,944 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 29 ms
18,944 KB
testcase_11 AC 13 ms
10,240 KB
testcase_12 AC 26 ms
18,304 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

const int N_MAX = 2000000;
int maxp[N_MAX + 10], cnt[N_MAX + 10];

int main(){
    int N, K;
    cin >> N >> K;
    
    int res = 0;
    for(int i=2;i<=N;i++){
        if(maxp[i] == 0){
            for(int kp=i;kp<=N;kp+=i)maxp[kp] = i;
            cnt[i] = 1;
        } else {
            int mp = maxp[i];
            if(maxp[i / mp] == mp){
                cnt[i] = cnt[i / mp];
            } else {
                cnt[i] = cnt[i / mp] + 1;
            }
        }
     
        if(cnt[i] >= K)++res;
    }
    
    cout << res << endl;
    return 0;
}
0