結果

問題 No.368 LCM of K-products
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-13 18:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-06-25 19:00:14
合計ジャッジ時間 11,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 476 ms
66,688 KB
testcase_01 AC 611 ms
65,536 KB
testcase_02 AC 605 ms
62,080 KB
testcase_03 AC 610 ms
66,432 KB
testcase_04 AC 614 ms
68,096 KB
testcase_05 AC 593 ms
62,976 KB
testcase_06 AC 50 ms
59,392 KB
testcase_07 AC 50 ms
59,264 KB
testcase_08 AC 52 ms
58,752 KB
testcase_09 AC 51 ms
59,008 KB
testcase_10 AC 53 ms
59,008 KB
testcase_11 AC 51 ms
58,760 KB
testcase_12 AC 55 ms
58,880 KB
testcase_13 AC 342 ms
64,512 KB
testcase_14 AC 514 ms
67,456 KB
testcase_15 AC 566 ms
67,712 KB
testcase_16 AC 484 ms
67,328 KB
testcase_17 AC 417 ms
67,200 KB
testcase_18 AC 564 ms
67,968 KB
testcase_19 AC 184 ms
61,444 KB
testcase_20 AC 391 ms
66,560 KB
testcase_21 AC 128 ms
61,024 KB
testcase_22 AC 535 ms
67,368 KB
testcase_23 AC 50 ms
59,008 KB
testcase_24 AC 49 ms
59,136 KB
testcase_25 AC 52 ms
59,136 KB
testcase_26 AC 50 ms
59,264 KB
testcase_27 AC 55 ms
59,264 KB
testcase_28 AC 52 ms
59,264 KB
testcase_29 AC 55 ms
58,752 KB
testcase_30 AC 54 ms
59,392 KB
testcase_31 AC 54 ms
59,208 KB
testcase_32 AC 54 ms
58,752 KB
testcase_33 AC 242 ms
62,336 KB
testcase_34 AC 582 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
mp=defaultdict(list)
def factorize(x):
    for i in range(2,40000):
        ret=0
        while x%i==0:
            ret+=1
            x//=i
        if ret:
            mp[i].append(ret)
    if x>1:
        mp[x].append(1)
N,K=map(int,input().split())
A=list(map(int,input().split()))
for i in range(N):
    factorize(A[i])
mod=1000000007
ans=1
for k,v in mp.items():
    list.sort(v)
    list.reverse(v)
    ret=0
    for i in range(min(len(v),K)):
        ret+=v[i]
    ans=ans*pow(int(k),ret,mod)%mod
print(ans)
0