結果

問題 No.368 LCM of K-products
ユーザー ああいいああいい
提出日時 2022-03-30 16:41:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-11-15 06:11:50
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
70,144 KB
testcase_01 AC 130 ms
67,456 KB
testcase_02 AC 126 ms
66,944 KB
testcase_03 AC 136 ms
71,552 KB
testcase_04 AC 135 ms
71,808 KB
testcase_05 AC 137 ms
66,304 KB
testcase_06 AC 60 ms
65,152 KB
testcase_07 AC 64 ms
65,920 KB
testcase_08 AC 66 ms
65,920 KB
testcase_09 AC 64 ms
65,664 KB
testcase_10 AC 64 ms
65,664 KB
testcase_11 AC 62 ms
65,792 KB
testcase_12 AC 61 ms
65,280 KB
testcase_13 AC 131 ms
69,504 KB
testcase_14 AC 123 ms
70,016 KB
testcase_15 AC 128 ms
69,760 KB
testcase_16 AC 120 ms
70,272 KB
testcase_17 AC 148 ms
69,248 KB
testcase_18 AC 129 ms
69,888 KB
testcase_19 AC 80 ms
66,688 KB
testcase_20 AC 112 ms
70,912 KB
testcase_21 AC 71 ms
66,304 KB
testcase_22 AC 178 ms
71,040 KB
testcase_23 AC 63 ms
66,048 KB
testcase_24 AC 61 ms
66,176 KB
testcase_25 AC 61 ms
65,536 KB
testcase_26 AC 62 ms
66,304 KB
testcase_27 AC 60 ms
65,408 KB
testcase_28 AC 61 ms
65,792 KB
testcase_29 AC 63 ms
66,304 KB
testcase_30 AC 61 ms
65,408 KB
testcase_31 AC 61 ms
65,664 KB
testcase_32 AC 61 ms
65,408 KB
testcase_33 AC 101 ms
68,608 KB
testcase_34 AC 177 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
P = 10 ** 9 + 7
ans = 1
a = list(map(int,input().split()))

C = 4 * 10 ** 4
dat = [0] * C
for i in range(2,C):
    if dat[i] == 0:
        for j in range(2 * i,C,i):
            dat[j] = 1
        l = []
        for j in range(N):
            count = 0
            while a[j] % i == 0:
                count += 1
                a[j] //= i
            if count:
                l.append(count)
        l.sort(reverse = True)
        _sum = 0
        for j in l[:K]:
            _sum += j
        ans = ans * pow(i,_sum,P) % P
from collections import defaultdict
d = defaultdict(int)
for i in a:
    if i > 1:
        d[i] += 1
for i in d:
    if d[i] > K:
        ans = ans * pow(i,K,P) % P
    else:
        ans = ans * pow(i,d[i],P) % P
print(ans)
0