結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 896 ms
173,780 KB
testcase_01 AC 40 ms
52,808 KB
testcase_02 AC 40 ms
53,620 KB
testcase_03 AC 38 ms
52,580 KB
testcase_04 AC 40 ms
52,820 KB
testcase_05 AC 49 ms
62,812 KB
testcase_06 AC 51 ms
63,000 KB
testcase_07 AC 40 ms
53,788 KB
testcase_08 WA -
testcase_09 AC 39 ms
53,016 KB
testcase_10 WA -
testcase_11 AC 823 ms
165,852 KB
testcase_12 AC 57 ms
66,664 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 40 ms
53,516 KB
testcase_16 AC 41 ms
53,548 KB
testcase_17 AC 41 ms
53,748 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 63 ms
67,604 KB
testcase_23 AC 39 ms
52,528 KB
testcase_24 AC 88 ms
78,676 KB
testcase_25 WA -
testcase_26 AC 211 ms
90,504 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,001 ms
173,948 KB
testcase_31 AC 60 ms
67,788 KB
testcase_32 AC 38 ms
52,468 KB
testcase_33 AC 59 ms
67,780 KB
testcase_34 AC 129 ms
78,384 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