結果

問題 No.1731 Product of Subsequence
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 18:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 178,688 KB
最終ジャッジ日時 2024-06-01 10:06:21
合計ジャッジ時間 11,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 914 ms
173,952 KB
testcase_01 AC 41 ms
52,244 KB
testcase_02 AC 43 ms
52,520 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 49 ms
60,928 KB
testcase_06 AC 51 ms
62,208 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 92 ms
78,464 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 1,020 ms
174,412 KB
testcase_11 AC 829 ms
166,400 KB
testcase_12 AC 59 ms
65,664 KB
testcase_13 AC 98 ms
78,464 KB
testcase_14 AC 746 ms
158,464 KB
testcase_15 AC 41 ms
52,736 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 AC 42 ms
52,508 KB
testcase_18 AC 756 ms
158,208 KB
testcase_19 AC 97 ms
78,720 KB
testcase_20 AC 654 ms
145,548 KB
testcase_21 AC 1,007 ms
178,688 KB
testcase_22 AC 63 ms
67,328 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 93 ms
78,464 KB
testcase_25 AC 74 ms
72,832 KB
testcase_26 AC 218 ms
90,240 KB
testcase_27 AC 286 ms
100,480 KB
testcase_28 AC 476 ms
116,992 KB
testcase_29 AC 238 ms
90,760 KB
testcase_30 AC 986 ms
174,208 KB
testcase_31 AC 63 ms
67,712 KB
testcase_32 AC 41 ms
52,352 KB
testcase_33 AC 63 ms
67,968 KB
testcase_34 AC 130 ms
78,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


from math import gcd
from _collections import defaultdict
mod=10**9+7
n,k=map(int,input().split())
if k==1:
    print((2**n-1)%mod)
    exit()
a=[0]+list(map(int,input().split()))
for i in range(1,n+1):
    a[i]=gcd(a[i],k)
dp=[defaultdict(int) for i in range(n+3)]
dp[0][1]=1
for i in range(n):
    for j in dp[i]:
        dp[i][j]%=mod
        dp[i+1][j]+=dp[i][j]
        dp[i+1][gcd(k,j*a[i+1])]+=dp[i][j]
print(dp[n][k]%mod)

0