結果

問題 No.368 LCM of K-products
ユーザー ああいいああいい
提出日時 2022-03-30 16:41:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 73,308 KB
最終ジャッジ日時 2024-04-27 05:54:51
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
70,520 KB
testcase_01 AC 124 ms
68,252 KB
testcase_02 AC 122 ms
68,568 KB
testcase_03 AC 134 ms
72,360 KB
testcase_04 AC 133 ms
73,308 KB
testcase_05 AC 132 ms
66,284 KB
testcase_06 AC 57 ms
66,000 KB
testcase_07 AC 57 ms
66,696 KB
testcase_08 AC 59 ms
66,332 KB
testcase_09 AC 58 ms
67,804 KB
testcase_10 AC 60 ms
67,520 KB
testcase_11 AC 59 ms
66,808 KB
testcase_12 AC 59 ms
66,888 KB
testcase_13 AC 128 ms
69,904 KB
testcase_14 AC 119 ms
71,600 KB
testcase_15 AC 123 ms
71,024 KB
testcase_16 AC 119 ms
71,936 KB
testcase_17 AC 142 ms
70,288 KB
testcase_18 AC 124 ms
71,232 KB
testcase_19 AC 75 ms
68,420 KB
testcase_20 AC 107 ms
71,228 KB
testcase_21 AC 68 ms
67,220 KB
testcase_22 AC 171 ms
72,128 KB
testcase_23 AC 58 ms
67,100 KB
testcase_24 AC 60 ms
66,680 KB
testcase_25 AC 60 ms
66,064 KB
testcase_26 AC 59 ms
67,264 KB
testcase_27 AC 60 ms
65,996 KB
testcase_28 AC 60 ms
66,080 KB
testcase_29 AC 58 ms
67,116 KB
testcase_30 AC 58 ms
66,388 KB
testcase_31 AC 58 ms
65,592 KB
testcase_32 AC 58 ms
65,748 KB
testcase_33 AC 100 ms
68,604 KB
testcase_34 AC 172 ms
69,208 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