結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,506 ms
175,360 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 48 ms
54,016 KB
testcase_04 AC 48 ms
53,760 KB
testcase_05 AC 60 ms
63,104 KB
testcase_06 AC 66 ms
64,384 KB
testcase_07 AC 48 ms
53,760 KB
testcase_08 AC 123 ms
78,080 KB
testcase_09 AC 70 ms
66,688 KB
testcase_10 AC 1,813 ms
178,432 KB
testcase_11 AC 1,511 ms
169,088 KB
testcase_12 AC 69 ms
66,816 KB
testcase_13 AC 160 ms
79,232 KB
testcase_14 AC 1,344 ms
159,360 KB
testcase_15 AC 47 ms
53,504 KB
testcase_16 AC 47 ms
53,760 KB
testcase_17 AC 49 ms
53,504 KB
testcase_18 AC 1,253 ms
158,080 KB
testcase_19 AC 157 ms
79,312 KB
testcase_20 AC 1,043 ms
145,536 KB
testcase_21 AC 1,794 ms
179,548 KB
testcase_22 AC 76 ms
69,504 KB
testcase_23 AC 68 ms
66,688 KB
testcase_24 AC 121 ms
78,080 KB
testcase_25 AC 108 ms
78,592 KB
testcase_26 AC 405 ms
96,200 KB
testcase_27 AC 501 ms
100,512 KB
testcase_28 AC 868 ms
120,520 KB
testcase_29 AC 427 ms
95,616 KB
testcase_30 AC 1,593 ms
178,048 KB
testcase_31 AC 76 ms
69,504 KB
testcase_32 AC 68 ms
66,432 KB
testcase_33 AC 76 ms
69,760 KB
testcase_34 AC 248 ms
84,820 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=a[i-1]
  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