結果

問題 No.368 LCM of K-products
ユーザー とりゐとりゐ
提出日時 2021-10-29 14:03:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-07 08:32:58
合計ジャッジ時間 7,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
70,016 KB
testcase_01 AC 196 ms
71,936 KB
testcase_02 AC 370 ms
62,848 KB
testcase_03 AC 288 ms
69,760 KB
testcase_04 AC 269 ms
72,448 KB
testcase_05 AC 481 ms
64,256 KB
testcase_06 AC 45 ms
59,136 KB
testcase_07 AC 45 ms
59,392 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 42 ms
53,888 KB
testcase_12 AC 46 ms
59,136 KB
testcase_13 AC 214 ms
66,432 KB
testcase_14 AC 299 ms
70,656 KB
testcase_15 AC 329 ms
73,728 KB
testcase_16 AC 295 ms
71,808 KB
testcase_17 AC 256 ms
69,120 KB
testcase_18 AC 350 ms
77,440 KB
testcase_19 AC 118 ms
62,080 KB
testcase_20 AC 241 ms
68,608 KB
testcase_21 AC 90 ms
60,928 KB
testcase_22 AC 337 ms
74,624 KB
testcase_23 AC 42 ms
53,632 KB
testcase_24 AC 42 ms
53,760 KB
testcase_25 AC 42 ms
53,888 KB
testcase_26 AC 42 ms
53,940 KB
testcase_27 AC 43 ms
53,760 KB
testcase_28 AC 42 ms
53,632 KB
testcase_29 AC 43 ms
53,888 KB
testcase_30 AC 43 ms
53,760 KB
testcase_31 AC 42 ms
53,888 KB
testcase_32 AC 43 ms
53,760 KB
testcase_33 AC 155 ms
64,128 KB
testcase_34 AC 69 ms
70,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def fact(n):
  #fact(18)=[[2, 1],[3, 2]] (18 = 2**1 * 3**2)
  arr = []
  temp = n
  for i in range(2, int(-(-n**0.5//1))+1):
    if temp%i==0:
      cnt=0
      while temp%i==0:
        cnt+=1
        temp //= i
      arr.append([i, cnt])
  if temp!=1:
    arr.append([temp, 1])
  if arr==[]:
    arr.append([n, 1])
  return arr

from collections import defaultdict
n,k=map(int,input().split())
a=list(map(int,input().split()))
d=defaultdict(list)
for i in a:
  for p,m in fact(i):
    d[p].append(m)
mod=10**9+7
ans=1
for i in d:
  x=sorted(d[i],reverse=True)
  ans*=pow(i,sum(x[:min(len(x),k)]),mod)
  ans%=mod
print(ans)
0