結果

問題 No.1731 Product of Subsequence
ユーザー ireenaireena
提出日時 2022-01-19 17:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,021 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 81,364 KB
最終ジャッジ日時 2024-04-25 17:57:03
合計ジャッジ時間 13,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 862 ms
80,072 KB
testcase_01 AC 39 ms
54,432 KB
testcase_02 AC 39 ms
55,560 KB
testcase_03 AC 43 ms
60,352 KB
testcase_04 AC 40 ms
54,780 KB
testcase_05 AC 50 ms
64,284 KB
testcase_06 AC 45 ms
63,220 KB
testcase_07 AC 43 ms
60,712 KB
testcase_08 AC 90 ms
74,140 KB
testcase_09 AC 55 ms
66,612 KB
testcase_10 AC 1,021 ms
81,136 KB
testcase_11 AC 802 ms
79,956 KB
testcase_12 AC 54 ms
67,436 KB
testcase_13 AC 78 ms
76,736 KB
testcase_14 AC 727 ms
79,204 KB
testcase_15 AC 38 ms
54,608 KB
testcase_16 AC 39 ms
54,432 KB
testcase_17 AC 37 ms
54,588 KB
testcase_18 AC 877 ms
81,364 KB
testcase_19 AC 80 ms
76,620 KB
testcase_20 AC 702 ms
79,676 KB
testcase_21 AC 986 ms
80,692 KB
testcase_22 AC 747 ms
80,640 KB
testcase_23 AC 55 ms
66,452 KB
testcase_24 AC 63 ms
67,816 KB
testcase_25 AC 59 ms
68,560 KB
testcase_26 AC 217 ms
76,628 KB
testcase_27 AC 264 ms
77,020 KB
testcase_28 AC 494 ms
77,264 KB
testcase_29 AC 231 ms
76,800 KB
testcase_30 AC 860 ms
80,436 KB
testcase_31 AC 744 ms
80,444 KB
testcase_32 AC 51 ms
65,292 KB
testcase_33 AC 116 ms
76,800 KB
testcase_34 AC 128 ms
76,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict
mod = 1000000007

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]

n, k = map(int, input().split())
(*A, ) = map(int, input().split())

divs = make_divisors(k)

dp = defaultdict(int)
dp[1] = 1

for i in range(n):
    nx = dp.copy()
    for d in divs:
        to = math.gcd(k, A[i] * d)
        nx[to] += dp[d]
        nx[to] %= mod
    dp = nx

ans = dp[k]
print(ans if k != 1 else ans-1)
0