結果

問題 No.368 LCM of K-products
ユーザー rlangevinrlangevin
提出日時 2023-09-04 12:19:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 60,468 KB
最終ジャッジ日時 2024-06-22 11:01:06
合計ジャッジ時間 2,670 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
53,904 KB
testcase_02 AC 36 ms
53,756 KB
testcase_03 AC 35 ms
53,212 KB
testcase_04 AC 36 ms
53,240 KB
testcase_05 AC 33 ms
53,688 KB
testcase_06 AC 31 ms
52,188 KB
testcase_07 AC 31 ms
53,148 KB
testcase_08 AC 35 ms
53,332 KB
testcase_09 AC 34 ms
51,876 KB
testcase_10 AC 34 ms
52,624 KB
testcase_11 AC 36 ms
53,400 KB
testcase_12 AC 33 ms
53,384 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 34 ms
53,876 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 32 ms
53,212 KB
testcase_24 AC 33 ms
53,148 KB
testcase_25 WA -
testcase_26 AC 32 ms
53,600 KB
testcase_27 AC 32 ms
52,996 KB
testcase_28 AC 32 ms
53,268 KB
testcase_29 AC 33 ms
53,816 KB
testcase_30 WA -
testcase_31 AC 33 ms
53,400 KB
testcase_32 AC 33 ms
52,792 KB
testcase_33 WA -
testcase_34 AC 33 ms
53,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N, K = map(int, input().split())
mod = 10 ** 9 + 7
A = list(map(int, input().split()))
if K == 1:
    for i in range(N):
        for j in range(i + 1, N):
            g = gcd(A[i], A[j])
            A[i] //= g
    ans = 1
    for i in range(N):
        ans *= A[i]
        ans %= mod
    print(ans)
    exit()

g = A[0]
ans = 1
for i in range(N):
    g = gcd(g, A[i])
    ans *= A[i]
    ans %= mod

ans *= pow(g, (mod - 2) * (N - K), mod)
print(ans%mod)
0