結果

問題 No.368 LCM of K-products
ユーザー lloyzlloyz
提出日時 2024-01-03 00:28:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,824 KB
最終ジャッジ日時 2024-09-27 18:22:13
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
76,824 KB
testcase_01 AC 177 ms
65,524 KB
testcase_02 AC 45 ms
63,804 KB
testcase_03 AC 99 ms
68,416 KB
testcase_04 AC 88 ms
76,436 KB
testcase_05 AC 514 ms
63,740 KB
testcase_06 AC 44 ms
60,836 KB
testcase_07 AC 41 ms
59,524 KB
testcase_08 AC 38 ms
56,144 KB
testcase_09 AC 38 ms
54,180 KB
testcase_10 AC 39 ms
55,176 KB
testcase_11 AC 37 ms
54,776 KB
testcase_12 AC 41 ms
60,456 KB
testcase_13 AC 89 ms
70,336 KB
testcase_14 AC 104 ms
70,952 KB
testcase_15 AC 108 ms
71,284 KB
testcase_16 AC 105 ms
70,832 KB
testcase_17 AC 105 ms
74,596 KB
testcase_18 AC 116 ms
73,528 KB
testcase_19 AC 58 ms
64,076 KB
testcase_20 AC 92 ms
69,220 KB
testcase_21 AC 57 ms
64,312 KB
testcase_22 AC 113 ms
73,180 KB
testcase_23 AC 40 ms
54,932 KB
testcase_24 AC 39 ms
55,920 KB
testcase_25 AC 39 ms
54,488 KB
testcase_26 AC 39 ms
55,048 KB
testcase_27 AC 38 ms
55,080 KB
testcase_28 AC 39 ms
54,584 KB
testcase_29 AC 38 ms
54,048 KB
testcase_30 AC 37 ms
54,840 KB
testcase_31 AC 39 ms
55,036 KB
testcase_32 AC 42 ms
54,672 KB
testcase_33 AC 74 ms
67,080 KB
testcase_34 AC 64 ms
71,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
from collections import defaultdict

n, k = map(int, input().split())
A = list(map(int, input().split()))
mod = 10**9 + 7

P = defaultdict(list)
C = defaultdict(int)
for i in range(n):
    a = A[i]
    f = 2
    while f * f <= a:
        cnt = 0
        while a % f == 0:
            cnt += 1
            a //= f
        if cnt > 0:
            if len(P[f]) < k:
                heappush(P[f], cnt)
                C[f] += cnt
            else:
                d = heappop(P[f])
                C[f] -= d
                res = max(d, cnt)
                heappush(P[f], res)
                C[f] += res
        f += 1
    if a != 1:
        if len(P[a]) < k:
            heappush(P[a], 1)
            C[a] += 1
        else:
            d = heappop(P[a])
            C[a] -= d
            res = max(d, 1)
            heappush(P[a], res)
            C[a] += res
ans = 1
for val, cnt in C.items():
    ans *= pow(val, cnt, mod)
    ans %= mod
print(ans)
0