結果

問題 No.368 LCM of K-products
ユーザー V_MelvilleV_Melville
提出日時 2024-12-24 13:12:14
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 6,622 ms
コンパイル使用メモリ 325,112 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 13:12:23
合計ジャッジ時間 8,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,248 KB
testcase_01 AC 31 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 12 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 103 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 13 ms
5,248 KB
testcase_16 AC 12 ms
5,248 KB
testcase_17 AC 11 ms
5,248 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 5 ms
5,248 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 13 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 6 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using P = pair<int, int>;
using mint = modint1000000007;

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

int main() {
    int n, k;
    cin >> n >> k;
    
    map<int, vector<int>> mp;
    rep(i, n) {
        int a;
        cin >> a;
        auto fs = factorize(a);
        for (auto [p, x] : fs) mp[p].push_back(x); 
    }
    
    mint ans = 1;
    for (auto [p, xs] : mp) {
        auto d = xs;
        ranges::sort(d, greater<>());
        if (d.size() > k) d.resize(k);
        int cnt = 0;
        rep(i, d.size()) cnt += d[i]; 
        ans *= mint(p).pow(cnt);
    }
    
    cout << ans.val() << '\n';
    
    return 0;
}
0