結果

問題 No.1731 Product of Subsequence
ユーザー H20H20
提出日時 2021-12-08 10:38:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 80,380 KB
最終ジャッジ日時 2024-07-16 02:57:00
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 691 ms
80,024 KB
testcase_01 AC 40 ms
54,056 KB
testcase_02 AC 40 ms
54,976 KB
testcase_03 AC 39 ms
54,372 KB
testcase_04 AC 40 ms
54,172 KB
testcase_05 AC 48 ms
64,260 KB
testcase_06 AC 48 ms
64,524 KB
testcase_07 AC 40 ms
54,368 KB
testcase_08 AC 81 ms
76,600 KB
testcase_09 WA -
testcase_10 AC 738 ms
80,080 KB
testcase_11 AC 622 ms
79,600 KB
testcase_12 AC 63 ms
71,200 KB
testcase_13 AC 81 ms
76,844 KB
testcase_14 AC 572 ms
79,284 KB
testcase_15 AC 41 ms
54,396 KB
testcase_16 WA -
testcase_17 AC 40 ms
54,192 KB
testcase_18 AC 599 ms
79,140 KB
testcase_19 AC 81 ms
77,100 KB
testcase_20 AC 451 ms
78,576 KB
testcase_21 AC 713 ms
80,380 KB
testcase_22 AC 67 ms
74,104 KB
testcase_23 WA -
testcase_24 AC 80 ms
76,792 KB
testcase_25 AC 71 ms
74,184 KB
testcase_26 AC 168 ms
76,824 KB
testcase_27 AC 211 ms
77,000 KB
testcase_28 AC 367 ms
77,672 KB
testcase_29 AC 181 ms
77,076 KB
testcase_30 AC 713 ms
80,308 KB
testcase_31 AC 68 ms
73,484 KB
testcase_32 WA -
testcase_33 AC 71 ms
74,748 KB
testcase_34 AC 104 ms
77,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import math

N,K = map(int,input().split())
A = list(map(int,input().split()))
mod = 10**9+7
for i in range(N):
    A[i] = math.gcd(A[i],K)

DP = collections.defaultdict(int)
DP[1]=1
for a in A:
    NDP = collections.defaultdict(int)
    CDP = DP.copy()

    for k,v in CDP.items():
        gcd = math.gcd(K,a*k)
        NDP[gcd]=(NDP[gcd]+DP[k])%mod
    for k,v in CDP.items():
        NDP[k]=(NDP[k]+DP[k])%mod
    DP = NDP
print(DP[K])
0