結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 857 ms
173,696 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 45 ms
60,928 KB
testcase_06 AC 47 ms
62,080 KB
testcase_07 AC 37 ms
52,608 KB
testcase_08 AC 84 ms
78,080 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 985 ms
174,296 KB
testcase_11 AC 791 ms
165,888 KB
testcase_12 AC 52 ms
65,280 KB
testcase_13 AC 89 ms
78,336 KB
testcase_14 AC 711 ms
158,208 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 AC 35 ms
51,840 KB
testcase_17 AC 35 ms
52,224 KB
testcase_18 AC 721 ms
157,952 KB
testcase_19 AC 89 ms
78,848 KB
testcase_20 AC 616 ms
145,792 KB
testcase_21 AC 964 ms
178,560 KB
testcase_22 AC 60 ms
67,456 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 82 ms
78,708 KB
testcase_25 AC 72 ms
72,832 KB
testcase_26 AC 204 ms
90,240 KB
testcase_27 AC 266 ms
100,480 KB
testcase_28 AC 454 ms
116,992 KB
testcase_29 AC 216 ms
90,240 KB
testcase_30 AC 933 ms
173,952 KB
testcase_31 AC 55 ms
67,456 KB
testcase_32 AC 36 ms
51,840 KB
testcase_33 AC 55 ms
67,456 KB
testcase_34 AC 119 ms
78,464 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