結果

問題 No.1731 Product of Subsequence
ユーザー MineMine
提出日時 2022-01-07 17:44:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-04-26 14:51:32
合計ジャッジ時間 19,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,479 ms
78,968 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 51 ms
59,904 KB
testcase_04 AC 47 ms
59,904 KB
testcase_05 AC 63 ms
66,176 KB
testcase_06 AC 53 ms
62,976 KB
testcase_07 AC 48 ms
59,904 KB
testcase_08 AC 182 ms
78,080 KB
testcase_09 WA -
testcase_10 AC 1,400 ms
79,360 KB
testcase_11 AC 1,159 ms
78,976 KB
testcase_12 AC 74 ms
71,168 KB
testcase_13 AC 98 ms
77,056 KB
testcase_14 AC 1,284 ms
78,720 KB
testcase_15 AC 44 ms
53,888 KB
testcase_16 WA -
testcase_17 AC 44 ms
54,272 KB
testcase_18 AC 1,254 ms
78,720 KB
testcase_19 AC 100 ms
76,928 KB
testcase_20 AC 1,150 ms
78,592 KB
testcase_21 AC 1,473 ms
79,488 KB
testcase_22 AC 979 ms
78,464 KB
testcase_23 WA -
testcase_24 AC 118 ms
77,184 KB
testcase_25 AC 100 ms
77,312 KB
testcase_26 AC 304 ms
77,568 KB
testcase_27 AC 394 ms
77,568 KB
testcase_28 AC 737 ms
78,040 KB
testcase_29 AC 307 ms
77,824 KB
testcase_30 AC 1,460 ms
78,976 KB
testcase_31 AC 993 ms
78,668 KB
testcase_32 WA -
testcase_33 AC 116 ms
77,184 KB
testcase_34 AC 132 ms
77,312 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.items():
        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
divmax = prime_factorization(k)
divs = {}
dp = {}
for mm in make_divisors(k):
    divs[mm] = prime_factorization(mm)
    dp[mm] = 0

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

print(dp[k]%mod)
0