結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
67,200 KB
testcase_01 AC 227 ms
67,072 KB
testcase_02 AC 373 ms
62,336 KB
testcase_03 AC 298 ms
68,224 KB
testcase_04 AC 293 ms
69,120 KB
testcase_05 AC 507 ms
65,792 KB
testcase_06 AC 39 ms
57,600 KB
testcase_07 AC 41 ms
57,600 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 40 ms
57,856 KB
testcase_13 AC 219 ms
66,176 KB
testcase_14 AC 319 ms
67,840 KB
testcase_15 AC 344 ms
68,992 KB
testcase_16 AC 310 ms
67,712 KB
testcase_17 AC 267 ms
66,304 KB
testcase_18 AC 356 ms
69,504 KB
testcase_19 AC 120 ms
62,592 KB
testcase_20 AC 250 ms
66,304 KB
testcase_21 AC 93 ms
62,208 KB
testcase_22 AC 345 ms
68,608 KB
testcase_23 AC 36 ms
52,480 KB
testcase_24 AC 36 ms
52,096 KB
testcase_25 AC 35 ms
52,352 KB
testcase_26 AC 36 ms
52,352 KB
testcase_27 AC 36 ms
52,608 KB
testcase_28 AC 37 ms
52,480 KB
testcase_29 AC 36 ms
52,480 KB
testcase_30 AC 37 ms
52,608 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 36 ms
52,416 KB
testcase_33 AC 161 ms
65,024 KB
testcase_34 AC 59 ms
66,752 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