結果

問題 No.368 LCM of K-products
ユーザー vwxyzvwxyz
提出日時 2022-09-28 22:51:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 613 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-22 17:49:26
合計ジャッジ時間 12,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 411 ms
16,128 KB
testcase_01 AC 1,370 ms
11,136 KB
testcase_02 AC 37 ms
10,880 KB
testcase_03 AC 429 ms
10,496 KB
testcase_04 AC 122 ms
10,624 KB
testcase_05 TLE -
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 36 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,368 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 304 ms
10,752 KB
testcase_14 AC 489 ms
10,752 KB
testcase_15 AC 543 ms
11,008 KB
testcase_16 AC 438 ms
11,008 KB
testcase_17 AC 424 ms
10,880 KB
testcase_18 AC 544 ms
11,008 KB
testcase_19 AC 151 ms
10,624 KB
testcase_20 AC 398 ms
10,624 KB
testcase_21 AC 120 ms
10,624 KB
testcase_22 AC 528 ms
10,880 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 29 ms
10,496 KB
testcase_26 AC 30 ms
10,496 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 30 ms
10,496 KB
testcase_32 AC 30 ms
10,368 KB
testcase_33 AC 217 ms
10,880 KB
testcase_34 AC 36 ms
21,376 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