結果

問題 No.1731 Product of Subsequence
ユーザー HydruHydru
提出日時 2021-11-06 13:23:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 178,800 KB
最終ジャッジ日時 2024-11-08 04:59:44
合計ジャッジ時間 13,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,002 ms
174,868 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 59 ms
62,848 KB
testcase_06 AC 65 ms
64,768 KB
testcase_07 AC 47 ms
53,760 KB
testcase_08 AC 121 ms
77,696 KB
testcase_09 AC 47 ms
53,504 KB
testcase_10 AC 1,135 ms
174,872 KB
testcase_11 AC 934 ms
167,664 KB
testcase_12 AC 75 ms
67,584 KB
testcase_13 AC 118 ms
77,952 KB
testcase_14 AC 842 ms
156,196 KB
testcase_15 AC 47 ms
53,760 KB
testcase_16 AC 47 ms
53,760 KB
testcase_17 AC 46 ms
53,888 KB
testcase_18 AC 834 ms
155,648 KB
testcase_19 AC 118 ms
78,208 KB
testcase_20 AC 710 ms
144,512 KB
testcase_21 AC 1,124 ms
178,800 KB
testcase_22 AC 76 ms
69,760 KB
testcase_23 AC 48 ms
54,016 KB
testcase_24 AC 111 ms
78,208 KB
testcase_25 AC 104 ms
77,696 KB
testcase_26 AC 261 ms
94,144 KB
testcase_27 AC 321 ms
98,104 KB
testcase_28 AC 539 ms
117,504 KB
testcase_29 AC 278 ms
94,068 KB
testcase_30 AC 1,086 ms
174,776 KB
testcase_31 AC 76 ms
69,888 KB
testcase_32 AC 46 ms
53,504 KB
testcase_33 AC 78 ms
69,376 KB
testcase_34 AC 166 ms
83,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import exit
from math import gcd
from collections import defaultdict
mod=10**9+7
n,k=map(int,input().split())
if k==1:
    print(pow(2,n,mod)-1)
    exit()

A=list(map(lambda x:gcd(int(x),k),input().split()))
ans=0

dp=[defaultdict(int) for _ in range(n+1)]
dp[0][1]=1
for i in range(1,n+1):
    for j in dp[i-1]:
        dp[i][j]+=dp[i-1][j]
        dp[i][j]%=mod

        ai=A[i-1]
        g=gcd(j*ai,k)
        dp[i][g]+=dp[i-1][j]
        dp[i][g]%=mod
ans=dp[n][k]
print(ans)
0