結果

問題 No.1731 Product of Subsequence
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-07 03:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-11-08 05:05:51
合計ジャッジ時間 10,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 739 ms
82,048 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
53,504 KB
testcase_03 AC 48 ms
53,632 KB
testcase_04 AC 48 ms
53,632 KB
testcase_05 AC 61 ms
62,208 KB
testcase_06 AC 64 ms
63,744 KB
testcase_07 AC 49 ms
54,144 KB
testcase_08 AC 106 ms
76,672 KB
testcase_09 AC 69 ms
66,688 KB
testcase_10 AC 843 ms
81,152 KB
testcase_11 AC 682 ms
80,256 KB
testcase_12 AC 70 ms
67,072 KB
testcase_13 AC 110 ms
76,800 KB
testcase_14 AC 619 ms
79,872 KB
testcase_15 AC 47 ms
53,376 KB
testcase_16 AC 47 ms
54,016 KB
testcase_17 AC 48 ms
53,888 KB
testcase_18 AC 601 ms
78,592 KB
testcase_19 AC 107 ms
77,056 KB
testcase_20 AC 519 ms
78,080 KB
testcase_21 AC 818 ms
81,280 KB
testcase_22 AC 76 ms
67,968 KB
testcase_23 AC 70 ms
66,688 KB
testcase_24 AC 103 ms
76,928 KB
testcase_25 AC 92 ms
74,112 KB
testcase_26 AC 208 ms
77,184 KB
testcase_27 AC 251 ms
77,056 KB
testcase_28 AC 408 ms
77,568 KB
testcase_29 AC 222 ms
76,672 KB
testcase_30 AC 794 ms
81,792 KB
testcase_31 AC 75 ms
68,096 KB
testcase_32 AC 68 ms
66,688 KB
testcase_33 AC 76 ms
67,968 KB
testcase_34 AC 139 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
mod = 10**9+7
from collections import defaultdict
import math

dp = defaultdict(lambda: 0)
dp[1] = 1
for a in A:
    a = math.gcd(a, k)
    nx = defaultdict(lambda: 0)
    for j, v in dp.items():
        nx[j] += v
        nx[j] %= mod
        g = math.gcd(j*a, k)
        nx[g] += v
        nx[g] %= mod
    dp = nx

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