結果

問題 No.1731 Product of Subsequence
ユーザー MineMine
提出日時 2022-01-07 18:00:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,597 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-11-08 05:18:52
合計ジャッジ時間 20,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,597 ms
79,360 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 48 ms
54,144 KB
testcase_03 AC 56 ms
59,776 KB
testcase_04 AC 51 ms
59,520 KB
testcase_05 AC 72 ms
66,560 KB
testcase_06 AC 60 ms
62,720 KB
testcase_07 AC 55 ms
60,032 KB
testcase_08 AC 202 ms
77,952 KB
testcase_09 AC 66 ms
65,792 KB
testcase_10 AC 1,496 ms
79,360 KB
testcase_11 AC 1,303 ms
78,848 KB
testcase_12 AC 77 ms
71,552 KB
testcase_13 AC 104 ms
77,568 KB
testcase_14 AC 1,426 ms
78,464 KB
testcase_15 AC 48 ms
54,016 KB
testcase_16 AC 47 ms
53,888 KB
testcase_17 AC 48 ms
54,016 KB
testcase_18 AC 1,369 ms
78,976 KB
testcase_19 AC 102 ms
76,800 KB
testcase_20 AC 1,214 ms
78,720 KB
testcase_21 AC 1,506 ms
79,616 KB
testcase_22 AC 1,120 ms
78,464 KB
testcase_23 AC 64 ms
65,536 KB
testcase_24 AC 125 ms
77,312 KB
testcase_25 AC 109 ms
77,312 KB
testcase_26 AC 318 ms
77,440 KB
testcase_27 AC 426 ms
77,696 KB
testcase_28 AC 835 ms
78,048 KB
testcase_29 AC 331 ms
77,952 KB
testcase_30 AC 1,506 ms
79,232 KB
testcase_31 AC 1,124 ms
78,720 KB
testcase_32 AC 64 ms
65,280 KB
testcase_33 AC 134 ms
76,928 KB
testcase_34 AC 146 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def prime_factorization(n):
    arr = defaultdict(int)
    for i in range(2, int(n**0.5)+1):
        while n % i == 0:
            arr[i] += 1
            n //= i
    if n != 1:
        arr[n] += 1
    return arr


def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]


def k_divisors(n):
    ans = defaultdict(int)
    for k in divmax:
        while n % k == 0:
            n //= k
            ans[k] += 1
    return ans


n, k = map(int, input().split())
a = list(map(int, input().split()))
mod = 10**9+7
divs = {}
dp = {}
for mm in make_divisors(k):
    divs[mm] = prime_factorization(mm)
    dp[mm] = 0
divmax = divs[k]

dp[1] += 1
for i in range(n):
    divai = k_divisors(a[i])
    dp_copy = dp.copy()
    for fr, div in divs.items():
        to = 1
        for key in divmax:
            to *= pow(key, min(divmax[key], div[key]+divai[key]))
        dp[to] += dp_copy[fr]
        dp[to] %= mod

if k == 1:
    print((dp[k]-1)%mod)
else:
    print(dp[k]%mod)
0