結果

問題 No.1731 Product of Subsequence
ユーザー H20H20
提出日時 2021-12-08 10:45:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-11-08 05:17:23
合計ジャッジ時間 11,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 762 ms
80,640 KB
testcase_01 AC 58 ms
53,632 KB
testcase_02 AC 53 ms
54,016 KB
testcase_03 AC 56 ms
54,016 KB
testcase_04 AC 54 ms
53,376 KB
testcase_05 AC 66 ms
62,080 KB
testcase_06 AC 73 ms
63,232 KB
testcase_07 AC 56 ms
54,144 KB
testcase_08 AC 109 ms
76,160 KB
testcase_09 AC 87 ms
70,144 KB
testcase_10 AC 836 ms
80,256 KB
testcase_11 AC 706 ms
79,488 KB
testcase_12 AC 94 ms
70,016 KB
testcase_13 AC 112 ms
76,800 KB
testcase_14 AC 665 ms
79,104 KB
testcase_15 AC 57 ms
53,760 KB
testcase_16 AC 57 ms
53,760 KB
testcase_17 AC 53 ms
53,888 KB
testcase_18 AC 676 ms
78,720 KB
testcase_19 AC 110 ms
76,544 KB
testcase_20 AC 567 ms
78,336 KB
testcase_21 AC 796 ms
80,384 KB
testcase_22 AC 89 ms
69,632 KB
testcase_23 AC 94 ms
70,144 KB
testcase_24 AC 111 ms
76,928 KB
testcase_25 AC 97 ms
72,320 KB
testcase_26 AC 205 ms
76,928 KB
testcase_27 AC 259 ms
76,800 KB
testcase_28 AC 422 ms
77,312 KB
testcase_29 AC 218 ms
76,672 KB
testcase_30 AC 776 ms
80,000 KB
testcase_31 AC 92 ms
69,376 KB
testcase_32 AC 92 ms
69,632 KB
testcase_33 AC 89 ms
69,504 KB
testcase_34 AC 137 ms
76,672 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
        NDP[k]=(NDP[k]+DP[k])%mod
    DP = NDP
if K==1:
    DP[K]=(DP[K]-1)%mod
print(DP[K])
0