結果

問題 No.368 LCM of K-products
ユーザー vwxyzvwxyz
提出日時 2022-09-28 22:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 1,007 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-12-22 17:49:33
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
69,888 KB
testcase_01 AC 234 ms
70,656 KB
testcase_02 AC 68 ms
63,616 KB
testcase_03 AC 132 ms
71,552 KB
testcase_04 AC 106 ms
72,832 KB
testcase_05 AC 606 ms
65,280 KB
testcase_06 AC 53 ms
59,136 KB
testcase_07 AC 52 ms
58,880 KB
testcase_08 AC 48 ms
53,120 KB
testcase_09 AC 50 ms
53,120 KB
testcase_10 AC 48 ms
53,120 KB
testcase_11 AC 49 ms
53,120 KB
testcase_12 AC 53 ms
59,392 KB
testcase_13 AC 108 ms
66,816 KB
testcase_14 AC 140 ms
71,296 KB
testcase_15 AC 153 ms
74,368 KB
testcase_16 AC 126 ms
71,808 KB
testcase_17 AC 121 ms
68,992 KB
testcase_18 AC 162 ms
76,544 KB
testcase_19 AC 75 ms
62,080 KB
testcase_20 AC 121 ms
68,864 KB
testcase_21 AC 68 ms
59,776 KB
testcase_22 AC 148 ms
74,624 KB
testcase_23 AC 47 ms
53,376 KB
testcase_24 AC 45 ms
53,760 KB
testcase_25 AC 46 ms
53,120 KB
testcase_26 AC 47 ms
53,632 KB
testcase_27 AC 48 ms
53,376 KB
testcase_28 AC 47 ms
53,504 KB
testcase_29 AC 48 ms
53,248 KB
testcase_30 AC 49 ms
53,504 KB
testcase_31 AC 46 ms
53,504 KB
testcase_32 AC 50 ms
53,376 KB
testcase_33 AC 88 ms
64,128 KB
testcase_34 AC 85 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline

def Factorize(N):
    assert N>=1
    factors=defaultdict(int)
    for p in range(2,N):
        if p**2>N:
            break
        while N%p==0:
            factors[p]+=1
            N//=p
    if N!=1:
        factors[N]+=1
    return factors

N,K=map(int,readline().split())
A=list(map(int,readline().split()))
dct=defaultdict(list)
for a in A:
    for p,e in Factorize(a).items():
        dct[p].append(e)
ans=1
mod=10**9+7
for p,lst in dct.items():
    lst.sort(reverse=True)
    ans*=pow(p,sum(lst[:K]),mod)
    ans%=mod
print(ans)
0