結果

問題 No.368 LCM of K-products
ユーザー vwxyzvwxyz
提出日時 2022-09-28 22:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 77,380 KB
最終ジャッジ日時 2024-06-02 01:42:19
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
71,040 KB
testcase_01 AC 190 ms
71,168 KB
testcase_02 AC 50 ms
64,756 KB
testcase_03 AC 101 ms
71,912 KB
testcase_04 AC 76 ms
73,736 KB
testcase_05 AC 510 ms
66,520 KB
testcase_06 AC 39 ms
59,468 KB
testcase_07 AC 40 ms
59,536 KB
testcase_08 AC 36 ms
55,332 KB
testcase_09 AC 38 ms
54,072 KB
testcase_10 AC 37 ms
54,524 KB
testcase_11 AC 36 ms
54,312 KB
testcase_12 AC 39 ms
59,140 KB
testcase_13 AC 83 ms
68,616 KB
testcase_14 AC 108 ms
73,480 KB
testcase_15 AC 120 ms
74,360 KB
testcase_16 AC 102 ms
72,256 KB
testcase_17 AC 95 ms
70,968 KB
testcase_18 AC 130 ms
77,380 KB
testcase_19 AC 60 ms
63,140 KB
testcase_20 AC 97 ms
70,012 KB
testcase_21 AC 51 ms
60,920 KB
testcase_22 AC 122 ms
75,108 KB
testcase_23 AC 37 ms
53,816 KB
testcase_24 AC 37 ms
54,188 KB
testcase_25 AC 37 ms
54,500 KB
testcase_26 AC 38 ms
55,176 KB
testcase_27 AC 36 ms
53,848 KB
testcase_28 AC 37 ms
54,424 KB
testcase_29 AC 36 ms
54,464 KB
testcase_30 AC 35 ms
55,488 KB
testcase_31 AC 36 ms
54,464 KB
testcase_32 AC 35 ms
53,728 KB
testcase_33 AC 68 ms
65,412 KB
testcase_34 AC 61 ms
70,620 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