結果

問題 No.1731 Product of Subsequence
ユーザー とりゐとりゐ
提出日時 2021-10-18 03:43:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,104 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 179,072 KB
最終ジャッジ日時 2024-11-08 04:22:55
合計ジャッジ時間 12,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 981 ms
175,164 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 54 ms
62,848 KB
testcase_06 AC 59 ms
64,000 KB
testcase_07 AC 45 ms
53,888 KB
testcase_08 AC 104 ms
78,208 KB
testcase_09 AC 64 ms
66,944 KB
testcase_10 AC 1,104 ms
175,488 KB
testcase_11 AC 909 ms
167,552 KB
testcase_12 AC 62 ms
66,816 KB
testcase_13 AC 105 ms
78,208 KB
testcase_14 AC 816 ms
156,512 KB
testcase_15 AC 43 ms
53,632 KB
testcase_16 AC 44 ms
53,760 KB
testcase_17 AC 44 ms
53,760 KB
testcase_18 AC 813 ms
155,904 KB
testcase_19 AC 105 ms
77,952 KB
testcase_20 AC 681 ms
144,512 KB
testcase_21 AC 1,085 ms
179,072 KB
testcase_22 AC 68 ms
68,864 KB
testcase_23 AC 64 ms
66,944 KB
testcase_24 AC 98 ms
78,308 KB
testcase_25 AC 92 ms
78,464 KB
testcase_26 AC 246 ms
94,460 KB
testcase_27 AC 308 ms
98,432 KB
testcase_28 AC 525 ms
118,016 KB
testcase_29 AC 258 ms
94,176 KB
testcase_30 AC 1,043 ms
174,596 KB
testcase_31 AC 66 ms
68,992 KB
testcase_32 AC 62 ms
66,816 KB
testcase_33 AC 66 ms
69,248 KB
testcase_34 AC 156 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説用
from math import gcd
from collections import defaultdict

n,k=map(int,input().split())
a=list(map(int,input().split()))
mod=10**9+7
# dp を連想配列で管理
dp=[defaultdict(int) for i in range(n+1)]
# dp[0][1]=1,dp[0][j]=0 (j!=1)
dp[0][1]=1
for i in range(1,n+1):
  ai=gcd(a[i-1],k)
  for j in dp[i-1]:
    # A_i を使わない場合の遷移
    dp[i][j]+=dp[i-1][j]
    dp[i][j]%=mod
    
    # A_i を使う場合の遷移
    g=gcd(j*ai,k)
    dp[i][g]+=dp[i-1][j]
    dp[i][g]%=mod

ans=dp[n][k]
# k=1 のときは答えを 1 引く
if k==1:
  ans-=1
print(ans)
0