結果

問題 No.368 LCM of K-products
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-17 22:02:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,034 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 319,684 KB
最終ジャッジ日時 2024-05-07 11:27:40
合計ジャッジ時間 11,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
78,436 KB
testcase_01 AC 1,034 ms
319,684 KB
testcase_02 AC 424 ms
77,096 KB
testcase_03 AC 678 ms
114,376 KB
testcase_04 AC 992 ms
161,988 KB
testcase_05 AC 763 ms
157,872 KB
testcase_06 AC 40 ms
60,576 KB
testcase_07 AC 41 ms
59,020 KB
testcase_08 AC 38 ms
54,836 KB
testcase_09 AC 36 ms
54,972 KB
testcase_10 AC 37 ms
54,180 KB
testcase_11 AC 39 ms
54,612 KB
testcase_12 AC 41 ms
61,028 KB
testcase_13 AC 259 ms
78,724 KB
testcase_14 AC 404 ms
91,032 KB
testcase_15 AC 711 ms
141,260 KB
testcase_16 AC 393 ms
90,024 KB
testcase_17 AC 286 ms
78,424 KB
testcase_18 AC 521 ms
99,236 KB
testcase_19 AC 144 ms
78,276 KB
testcase_20 AC 313 ms
82,568 KB
testcase_21 AC 102 ms
70,468 KB
testcase_22 AC 489 ms
99,304 KB
testcase_23 AC 37 ms
54,204 KB
testcase_24 AC 37 ms
54,504 KB
testcase_25 AC 37 ms
55,376 KB
testcase_26 AC 38 ms
55,044 KB
testcase_27 AC 37 ms
54,724 KB
testcase_28 AC 37 ms
54,668 KB
testcase_29 AC 39 ms
54,360 KB
testcase_30 AC 37 ms
55,048 KB
testcase_31 AC 36 ms
55,388 KB
testcase_32 AC 37 ms
55,200 KB
testcase_33 AC 149 ms
64,496 KB
testcase_34 AC 154 ms
80,448 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