結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,588 ms
79,076 KB
testcase_01 AC 43 ms
55,964 KB
testcase_02 AC 42 ms
54,252 KB
testcase_03 AC 47 ms
60,272 KB
testcase_04 AC 45 ms
60,456 KB
testcase_05 AC 58 ms
66,636 KB
testcase_06 AC 52 ms
63,864 KB
testcase_07 AC 48 ms
60,184 KB
testcase_08 AC 178 ms
78,152 KB
testcase_09 WA -
testcase_10 AC 1,495 ms
79,480 KB
testcase_11 AC 1,254 ms
79,128 KB
testcase_12 AC 66 ms
72,276 KB
testcase_13 AC 89 ms
77,376 KB
testcase_14 AC 1,362 ms
78,580 KB
testcase_15 AC 43 ms
55,060 KB
testcase_16 WA -
testcase_17 AC 42 ms
55,100 KB
testcase_18 AC 1,284 ms
79,064 KB
testcase_19 AC 88 ms
77,096 KB
testcase_20 AC 1,161 ms
78,640 KB
testcase_21 AC 1,500 ms
79,632 KB
testcase_22 AC 1,056 ms
78,708 KB
testcase_23 WA -
testcase_24 AC 110 ms
77,536 KB
testcase_25 AC 94 ms
77,460 KB
testcase_26 AC 302 ms
77,728 KB
testcase_27 AC 404 ms
77,400 KB
testcase_28 AC 783 ms
78,008 KB
testcase_29 AC 319 ms
77,424 KB
testcase_30 AC 1,420 ms
79,312 KB
testcase_31 AC 1,046 ms
78,696 KB
testcase_32 WA -
testcase_33 AC 120 ms
77,012 KB
testcase_34 AC 132 ms
77,544 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