結果

問題 No.368 LCM of K-products
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-17 22:09:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,162 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 682 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 319,496 KB
最終ジャッジ日時 2024-11-30 03:54:43
合計ジャッジ時間 8,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
77,948 KB
testcase_01 AC 1,162 ms
319,496 KB
testcase_02 AC 121 ms
76,744 KB
testcase_03 AC 588 ms
114,144 KB
testcase_04 AC 1,058 ms
161,128 KB
testcase_05 AC 684 ms
157,896 KB
testcase_06 AC 46 ms
59,068 KB
testcase_07 AC 47 ms
59,136 KB
testcase_08 AC 43 ms
54,668 KB
testcase_09 AC 43 ms
54,800 KB
testcase_10 AC 44 ms
55,288 KB
testcase_11 AC 43 ms
54,448 KB
testcase_12 AC 48 ms
59,288 KB
testcase_13 AC 132 ms
78,256 KB
testcase_14 AC 245 ms
90,804 KB
testcase_15 AC 605 ms
141,104 KB
testcase_16 AC 208 ms
82,380 KB
testcase_17 AC 145 ms
77,692 KB
testcase_18 AC 326 ms
98,668 KB
testcase_19 AC 99 ms
77,504 KB
testcase_20 AC 181 ms
82,004 KB
testcase_21 AC 73 ms
70,340 KB
testcase_22 AC 320 ms
98,764 KB
testcase_23 AC 44 ms
54,600 KB
testcase_24 AC 43 ms
53,676 KB
testcase_25 AC 44 ms
54,992 KB
testcase_26 AC 43 ms
55,104 KB
testcase_27 AC 45 ms
53,996 KB
testcase_28 AC 44 ms
55,076 KB
testcase_29 AC 44 ms
54,368 KB
testcase_30 AC 45 ms
53,840 KB
testcase_31 AC 45 ms
55,036 KB
testcase_32 AC 45 ms
54,124 KB
testcase_33 AC 65 ms
64,504 KB
testcase_34 AC 176 ms
79,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def prime_factorization(n):  # 素因数分解
    res = []
    cnt = 0
    while n % 2 == 0:
        while n % 2 == 0:
            cnt += 1
            n //= 2
    if cnt:
        res.append((2, cnt))
    i = 1
    while i * i <= n:
        i += 2
        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