結果

問題 No.106 素数が嫌い!2
ユーザー roarisroaris
提出日時 2019-12-20 00:41:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,813 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 170,544 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 02:17:23
合計ジャッジ時間 13,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 691 ms
5,248 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 701 ms
5,376 KB
testcase_05 AC 1,785 ms
5,376 KB
testcase_06 AC 1,786 ms
5,376 KB
testcase_07 AC 1,813 ms
6,940 KB
testcase_08 AC 52 ms
6,944 KB
testcase_09 AC 55 ms
6,940 KB
testcase_10 AC 1,753 ms
6,940 KB
testcase_11 AC 579 ms
6,940 KB
testcase_12 AC 1,655 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> P;

vector<P> factorize(int n) {
    vector<P> res;
    
    for (int i=2; i*i<=n; i++) {
        int cnt = 0;
        
        while (n%i==0) {
            n /= i;
            cnt++;
        }
        
        if (cnt>0) res.push_back(P(i, cnt));
    }
    
    if (n>1) res.push_back(P(n, 1));
    
    return res;
}

int main() {
    int N, K; cin >> N >> K;
    int ans = 0;
    
    for (int i=2; i<=N; i++) {
        vector<P> fct = factorize(i);
        
        if (fct.size()>=K) ans++;
    }
    
    cout << ans << endl;
}
0