結果

問題 No.368 LCM of K-products
ユーザー rlangevinrlangevin
提出日時 2023-10-13 08:53:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-09-15 06:02:51
合計ジャッジ時間 7,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
68,608 KB
testcase_01 AC 195 ms
69,376 KB
testcase_02 AC 367 ms
62,720 KB
testcase_03 AC 286 ms
69,120 KB
testcase_04 AC 268 ms
71,296 KB
testcase_05 AC 481 ms
62,976 KB
testcase_06 AC 46 ms
59,136 KB
testcase_07 AC 46 ms
58,752 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 44 ms
53,888 KB
testcase_11 AC 42 ms
53,632 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 210 ms
65,408 KB
testcase_14 AC 299 ms
69,376 KB
testcase_15 AC 332 ms
71,296 KB
testcase_16 AC 293 ms
70,272 KB
testcase_17 AC 255 ms
67,712 KB
testcase_18 AC 344 ms
73,216 KB
testcase_19 AC 118 ms
61,440 KB
testcase_20 AC 240 ms
67,968 KB
testcase_21 AC 91 ms
60,800 KB
testcase_22 AC 335 ms
72,576 KB
testcase_23 AC 42 ms
53,888 KB
testcase_24 AC 42 ms
53,760 KB
testcase_25 AC 41 ms
53,760 KB
testcase_26 AC 44 ms
53,376 KB
testcase_27 AC 43 ms
53,760 KB
testcase_28 AC 43 ms
54,272 KB
testcase_29 AC 43 ms
54,016 KB
testcase_30 AC 43 ms
53,632 KB
testcase_31 AC 43 ms
53,888 KB
testcase_32 AC 43 ms
53,760 KB
testcase_33 AC 156 ms
63,360 KB
testcase_34 AC 64 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5 // 1)) + 1):
        if temp % i == 0:
            cnt = 0
            while temp % i == 0:
                cnt += 1
                temp //= i
            arr.append([i, cnt])
 
    if temp != 1:
        arr.append([temp, 1])

    return arr


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

from collections import *
D = defaultdict(list)
for a in A:
    for k, v in factorization(a):
        D[k].append(v)

ans = 1
mod = 10 ** 9 + 7
for k, v in D.items():
    if len(v) <= K:
        ans *= pow(k, sum(v), mod)
        ans %= mod
    else:
        v.sort(reverse=True)
        ans *= pow(k, sum(v[:K]), mod)
        ans %= mod

print(ans)
0