結果

問題 No.368 LCM of K-products
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-05 20:29:54
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 621 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 76,792 KB
実行使用メモリ 80,676 KB
最終ジャッジ日時 2024-09-22 14:41:03
合計ジャッジ時間 6,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
79,896 KB
testcase_01 AC 236 ms
80,260 KB
testcase_02 AC 92 ms
79,864 KB
testcase_03 AC 151 ms
80,028 KB
testcase_04 AC 118 ms
79,896 KB
testcase_05 AC 621 ms
79,636 KB
testcase_06 AC 83 ms
78,352 KB
testcase_07 AC 83 ms
78,968 KB
testcase_08 AC 84 ms
77,476 KB
testcase_09 AC 81 ms
77,948 KB
testcase_10 AC 83 ms
77,832 KB
testcase_11 AC 82 ms
77,604 KB
testcase_12 AC 84 ms
78,740 KB
testcase_13 AC 131 ms
79,748 KB
testcase_14 AC 161 ms
79,920 KB
testcase_15 AC 168 ms
80,676 KB
testcase_16 AC 151 ms
79,776 KB
testcase_17 AC 145 ms
80,060 KB
testcase_18 AC 167 ms
80,192 KB
testcase_19 AC 104 ms
79,020 KB
testcase_20 AC 146 ms
79,904 KB
testcase_21 AC 98 ms
78,360 KB
testcase_22 AC 168 ms
80,364 KB
testcase_23 AC 85 ms
77,712 KB
testcase_24 AC 84 ms
77,960 KB
testcase_25 AC 83 ms
77,956 KB
testcase_26 AC 84 ms
77,720 KB
testcase_27 AC 82 ms
77,464 KB
testcase_28 AC 84 ms
77,504 KB
testcase_29 AC 82 ms
77,468 KB
testcase_30 AC 82 ms
77,368 KB
testcase_31 AC 84 ms
78,084 KB
testcase_32 AC 85 ms
77,608 KB
testcase_33 AC 118 ms
79,264 KB
testcase_34 AC 108 ms
80,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as ddict

N, K = map(int, raw_input().split())
a = list(map(int, raw_input().split()))

exponents = ddict(list)
for ax in a:
    # primeFactrization
    cnt = ddict(int)
    i = 2
    while i * i <= ax:
        while ax % i == 0:
            cnt[i] +=  1
            ax /= i
        i += 1
    if ax != 1:
        cnt[ax] += 1

    for key, value in cnt.items():
        exponents[key].append(value)



mod = 10**9 + 7

ans = 1
for prime, li in exponents.items():
    li.sort(reverse = True)
    num = 0
    for i in range(min(K, len(li))):
        num += li[i]

    ans *= pow(prime, num, mod)
    ans %= mod

print ans
0