結果

問題 No.368 LCM of K-products
ユーザー nebukuro09nebukuro09
提出日時 2016-10-21 14:11:40
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 630 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-11-23 16:45:18
合計ジャッジ時間 9,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
11,648 KB
testcase_01 AC 949 ms
6,784 KB
testcase_02 AC 19 ms
6,272 KB
testcase_03 AC 299 ms
6,400 KB
testcase_04 AC 83 ms
6,400 KB
testcase_05 TLE -
testcase_06 AC 11 ms
6,016 KB
testcase_07 AC 13 ms
6,016 KB
testcase_08 AC 10 ms
6,144 KB
testcase_09 AC 11 ms
6,144 KB
testcase_10 AC 11 ms
6,272 KB
testcase_11 AC 12 ms
6,144 KB
testcase_12 AC 11 ms
6,144 KB
testcase_13 AC 207 ms
6,400 KB
testcase_14 AC 336 ms
6,272 KB
testcase_15 AC 372 ms
6,400 KB
testcase_16 AC 308 ms
6,400 KB
testcase_17 AC 274 ms
6,528 KB
testcase_18 AC 381 ms
6,400 KB
testcase_19 AC 95 ms
6,400 KB
testcase_20 AC 270 ms
6,528 KB
testcase_21 AC 72 ms
6,400 KB
testcase_22 AC 364 ms
6,656 KB
testcase_23 AC 10 ms
6,144 KB
testcase_24 AC 10 ms
6,016 KB
testcase_25 AC 9 ms
6,144 KB
testcase_26 AC 9 ms
6,144 KB
testcase_27 AC 10 ms
6,144 KB
testcase_28 AC 10 ms
6,272 KB
testcase_29 AC 10 ms
6,272 KB
testcase_30 AC 10 ms
6,272 KB
testcase_31 AC 11 ms
6,272 KB
testcase_32 AC 10 ms
6,016 KB
testcase_33 AC 146 ms
6,144 KB
testcase_34 AC 15 ms
12,672 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