結果

問題 No.368 LCM of K-products
ユーザー titiatitia
提出日時 2022-12-15 06:44:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-04-26 09:50:21
合計ジャッジ時間 7,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
67,456 KB
testcase_01 AC 229 ms
67,200 KB
testcase_02 AC 382 ms
62,592 KB
testcase_03 AC 301 ms
68,096 KB
testcase_04 AC 295 ms
68,992 KB
testcase_05 AC 514 ms
65,152 KB
testcase_06 AC 42 ms
57,984 KB
testcase_07 AC 43 ms
57,600 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 41 ms
57,600 KB
testcase_13 AC 225 ms
65,792 KB
testcase_14 AC 323 ms
68,332 KB
testcase_15 AC 350 ms
69,248 KB
testcase_16 AC 313 ms
68,096 KB
testcase_17 AC 269 ms
66,816 KB
testcase_18 AC 358 ms
68,992 KB
testcase_19 AC 124 ms
63,616 KB
testcase_20 AC 257 ms
66,944 KB
testcase_21 AC 93 ms
61,824 KB
testcase_22 AC 351 ms
68,480 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 37 ms
52,224 KB
testcase_25 AC 37 ms
51,968 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 38 ms
52,224 KB
testcase_28 AC 38 ms
52,224 KB
testcase_29 AC 39 ms
52,736 KB
testcase_30 AC 37 ms
52,864 KB
testcase_31 AC 38 ms
52,352 KB
testcase_32 AC 38 ms
52,096 KB
testcase_33 AC 168 ms
65,204 KB
testcase_34 AC 62 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

def fact(x):
    L=int(x**(1/2))

    FACT=dict()

    for i in range(2,L+2):
        while x%i==0:
            FACT[i]=FACT.get(i,0)+1
            x=x//i

    if x!=1:
        FACT[x]=FACT.get(x,0)+1

    return FACT

N,K=map(int,input().split())
A=list(map(int,input().split()))

FF=[]

for a in A:
    FF.append(fact(a))

X=set()

for ff in FF:
    X|=set(ff)


ANS=1
for x in X:
    LIST=[]
    for ff in FF:
        if x in ff:
            LIST.append(ff[x])
    LIST.sort(reverse=True)

    ANS=ANS*pow(x,sum(LIST[:K]),mod)%mod

print(ANS)
        

0