結果

問題 No.368 LCM of K-products
ユーザー 👑 rin204rin204
提出日時 2022-10-30 16:31:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,780 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 77,908 KB
最終ジャッジ日時 2024-07-07 07:52:49
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
77,532 KB
testcase_01 AC 108 ms
77,908 KB
testcase_02 AC 64 ms
76,136 KB
testcase_03 AC 138 ms
77,864 KB
testcase_04 AC 121 ms
77,740 KB
testcase_05 AC 56 ms
70,240 KB
testcase_06 AC 33 ms
52,984 KB
testcase_07 AC 33 ms
54,184 KB
testcase_08 AC 31 ms
53,788 KB
testcase_09 AC 30 ms
52,520 KB
testcase_10 AC 31 ms
53,324 KB
testcase_11 AC 30 ms
53,612 KB
testcase_12 AC 32 ms
52,944 KB
testcase_13 AC 80 ms
76,720 KB
testcase_14 AC 92 ms
77,080 KB
testcase_15 AC 105 ms
77,348 KB
testcase_16 AC 102 ms
77,480 KB
testcase_17 AC 90 ms
76,876 KB
testcase_18 AC 99 ms
77,688 KB
testcase_19 AC 57 ms
72,064 KB
testcase_20 AC 99 ms
77,384 KB
testcase_21 AC 49 ms
66,176 KB
testcase_22 AC 104 ms
77,184 KB
testcase_23 AC 32 ms
52,608 KB
testcase_24 AC 31 ms
52,608 KB
testcase_25 AC 29 ms
52,480 KB
testcase_26 AC 31 ms
52,608 KB
testcase_27 AC 30 ms
52,608 KB
testcase_28 AC 31 ms
52,608 KB
testcase_29 AC 32 ms
52,992 KB
testcase_30 AC 30 ms
52,864 KB
testcase_31 RE -
testcase_32 AC 31 ms
52,608 KB
testcase_33 AC 78 ms
76,836 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

MOD = 10 ** 9 + 7

def isprime(n):
    if n <= 1:
        return False
    elif n == 2:
        return True
    elif n % 2 == 0:
        return False
    
    A = [2, 325, 9375, 28178, 450775, 9780504, 1795265022]
    s = 0
    d = n - 1
    while d % 2 == 0:
        s += 1
        d >>= 1
    
    for a in A:
        if a % n == 0:
            return True
        x = pow(a, d, n)
        if x != 1:
            for t in range(s):
                if x == n - 1:
                    break
                x = x * x % n
            else:
                return False
    return True
        
def pollard(n):
    if n % 2 == 0:
        return 2
    if isprime(n):
        return n
    
    f = lambda x:(x * x + 1) % n
    
    step = 0
    while 1:
        step += 1
        x = step
        y = f(x)
        while 1:
            p = gcd(y - x + n, n)
            if p == 0 or p == n:
                break
            if p != 1:
                return p
            x = f(x)
            y = f(f(y))

def primefact(n):
    if n == 1:
        return []
    p = pollard(n)
    if p == n:
        return [p]
    left = primefact(p)
    right = primefact(n // p)
    left += right
    return sorted(left)


n, K = map(int, input().split())
A = list(map(int, input().split()))

cnt = {}
for a in A:
    primes = primefact(a)
    bef = primes[0]
    c = 0
    for p in primes:
        if p != bef:
            if bef not in cnt:
                cnt[bef] = []
            cnt[bef].append(c)
            c = 1
            bef = p
        else:
            c += 1
    if bef not in cnt:
        cnt[bef] = []
    cnt[bef].append(c)

ans = 1
for k, v in cnt.items():
    v.sort(reverse=True)
    tot = sum(v[:K])
    ans *= pow(k, tot, MOD)
    ans %= MOD
print(ans)
0