結果

問題 No.368 LCM of K-products
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-17 22:02:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,087 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 319,384 KB
最終ジャッジ日時 2024-11-30 03:42:49
合計ジャッジ時間 10,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
78,464 KB
testcase_01 AC 1,087 ms
319,384 KB
testcase_02 AC 428 ms
77,056 KB
testcase_03 AC 699 ms
114,464 KB
testcase_04 AC 1,057 ms
162,004 KB
testcase_05 AC 793 ms
157,844 KB
testcase_06 AC 43 ms
59,200 KB
testcase_07 AC 45 ms
59,528 KB
testcase_08 AC 40 ms
53,732 KB
testcase_09 AC 40 ms
54,016 KB
testcase_10 AC 39 ms
53,788 KB
testcase_11 AC 38 ms
54,396 KB
testcase_12 AC 43 ms
59,684 KB
testcase_13 AC 263 ms
78,432 KB
testcase_14 AC 416 ms
91,252 KB
testcase_15 AC 754 ms
141,108 KB
testcase_16 AC 409 ms
90,020 KB
testcase_17 AC 291 ms
78,792 KB
testcase_18 AC 518 ms
98,760 KB
testcase_19 AC 153 ms
77,972 KB
testcase_20 AC 336 ms
82,432 KB
testcase_21 AC 109 ms
70,556 KB
testcase_22 AC 516 ms
98,900 KB
testcase_23 AC 40 ms
54,404 KB
testcase_24 AC 41 ms
54,008 KB
testcase_25 AC 42 ms
53,980 KB
testcase_26 AC 40 ms
53,744 KB
testcase_27 AC 40 ms
54,032 KB
testcase_28 AC 41 ms
54,036 KB
testcase_29 AC 40 ms
54,144 KB
testcase_30 AC 40 ms
54,004 KB
testcase_31 AC 40 ms
54,220 KB
testcase_32 AC 40 ms
53,736 KB
testcase_33 AC 156 ms
64,124 KB
testcase_34 AC 180 ms
79,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def prime_factorization(n):  # 素因数分解
    res = []
    for i in range(2, int(n ** 0.5) + 1):
        if n % i == 0:
            cnt = 0
            while n % i == 0:
                cnt += 1
                n //= i
            res.append((i, cnt))
    if n > 1:
        res.append((n, 1))
    return res


N, K = map(int, input().split())
A = list(map(int, input().split()))

dp = [defaultdict(int) for _ in range(K+1)]
for a in A:
    pf = prime_factorization(a)
    for i in reversed(range(K)):
        for p, f in pf:
            dp[i+1][p] = max(dp[i+1][p], dp[i][p] + f)

mod = 10 ** 9 + 7
ans = 1
for k, v in dp[K].items():
    ans *= pow(k, v, mod)
    ans %= mod
print(ans)
0