結果

問題 No.368 LCM of K-products
ユーザー nebukuro09nebukuro09
提出日時 2016-10-21 14:11:50
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 78,884 KB
最終ジャッジ日時 2024-09-22 14:51:29
合計ジャッジ時間 5,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
78,860 KB
testcase_01 AC 223 ms
78,104 KB
testcase_02 AC 81 ms
78,068 KB
testcase_03 AC 134 ms
78,608 KB
testcase_04 AC 107 ms
78,248 KB
testcase_05 AC 616 ms
78,368 KB
testcase_06 AC 75 ms
75,804 KB
testcase_07 AC 74 ms
76,312 KB
testcase_08 AC 74 ms
75,692 KB
testcase_09 AC 73 ms
75,384 KB
testcase_10 AC 72 ms
75,652 KB
testcase_11 AC 72 ms
75,640 KB
testcase_12 AC 74 ms
76,556 KB
testcase_13 AC 115 ms
78,488 KB
testcase_14 AC 140 ms
78,372 KB
testcase_15 AC 147 ms
78,532 KB
testcase_16 AC 139 ms
78,884 KB
testcase_17 AC 130 ms
78,472 KB
testcase_18 AC 151 ms
78,636 KB
testcase_19 AC 90 ms
76,828 KB
testcase_20 AC 130 ms
78,580 KB
testcase_21 AC 88 ms
76,180 KB
testcase_22 AC 149 ms
78,844 KB
testcase_23 AC 72 ms
75,416 KB
testcase_24 AC 73 ms
75,556 KB
testcase_25 AC 74 ms
75,448 KB
testcase_26 AC 74 ms
75,404 KB
testcase_27 AC 73 ms
75,796 KB
testcase_28 AC 74 ms
75,464 KB
testcase_29 AC 72 ms
75,456 KB
testcase_30 AC 74 ms
75,540 KB
testcase_31 AC 73 ms
75,560 KB
testcase_32 AC 73 ms
75,828 KB
testcase_33 AC 101 ms
77,832 KB
testcase_34 AC 93 ms
78,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7

def prime_decomposition(n):
    i = 2
    table = {}
    while i * i <= n:
        while n % i == 0:
            n /= i
            table[i] = table.get(i, 0) + 1
        i += 1
    if n > 1:
        table[n] = table.get(n, 0) + 1
    return table

N, K = map(int, raw_input().split())
A = map(int, raw_input().split())
d = {}
for a in A:
    for k, v in prime_decomposition(a).items():
        if k in d:
            d[k].append(v)
        else:
            d[k] = [v]

ans = 1
for k, v in d.items():
    nv = sorted(v, reverse=True)
    for i in xrange(min(K, len(v))):
        ans = ans*k**nv[i] % MOD
print ans
0