結果

問題 No.1731 Product of Subsequence
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 18:33:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 179,184 KB
最終ジャッジ日時 2024-06-01 10:06:02
合計ジャッジ時間 11,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 890 ms
173,548 KB
testcase_01 AC 38 ms
52,596 KB
testcase_02 AC 39 ms
53,804 KB
testcase_03 AC 39 ms
52,960 KB
testcase_04 AC 38 ms
53,196 KB
testcase_05 AC 48 ms
61,444 KB
testcase_06 AC 53 ms
62,752 KB
testcase_07 AC 40 ms
54,068 KB
testcase_08 WA -
testcase_09 AC 40 ms
53,080 KB
testcase_10 WA -
testcase_11 AC 821 ms
165,900 KB
testcase_12 AC 57 ms
66,532 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
52,992 KB
testcase_16 AC 39 ms
53,388 KB
testcase_17 AC 39 ms
52,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 60 ms
68,208 KB
testcase_23 AC 40 ms
53,532 KB
testcase_24 AC 88 ms
78,984 KB
testcase_25 WA -
testcase_26 AC 217 ms
90,336 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 992 ms
173,928 KB
testcase_31 AC 60 ms
68,568 KB
testcase_32 AC 38 ms
52,856 KB
testcase_33 AC 61 ms
68,364 KB
testcase_34 AC 127 ms
78,428 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])

0