結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,021 ms
173,440 KB
testcase_01 AC 46 ms
51,968 KB
testcase_02 AC 45 ms
52,224 KB
testcase_03 AC 44 ms
51,968 KB
testcase_04 AC 44 ms
52,096 KB
testcase_05 AC 54 ms
61,056 KB
testcase_06 AC 58 ms
61,952 KB
testcase_07 AC 44 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 46 ms
51,712 KB
testcase_10 WA -
testcase_11 AC 903 ms
165,988 KB
testcase_12 AC 64 ms
65,408 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 44 ms
51,840 KB
testcase_16 AC 48 ms
51,712 KB
testcase_17 AC 41 ms
51,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 73 ms
67,200 KB
testcase_23 AC 43 ms
52,096 KB
testcase_24 AC 102 ms
78,592 KB
testcase_25 WA -
testcase_26 AC 246 ms
89,856 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,088 ms
173,796 KB
testcase_31 AC 67 ms
67,072 KB
testcase_32 AC 45 ms
51,584 KB
testcase_33 AC 69 ms
67,328 KB
testcase_34 AC 147 ms
78,412 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