結果

問題 No.1731 Product of Subsequence
ユーザー lloyzlloyz
提出日時 2024-05-11 01:13:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,109 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 179,180 KB
最終ジャッジ日時 2024-05-11 01:13:37
合計ジャッジ時間 13,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 987 ms
174,828 KB
testcase_01 AC 42 ms
54,656 KB
testcase_02 AC 41 ms
55,720 KB
testcase_03 AC 42 ms
54,480 KB
testcase_04 AC 42 ms
55,376 KB
testcase_05 AC 53 ms
63,448 KB
testcase_06 AC 54 ms
66,408 KB
testcase_07 AC 41 ms
55,616 KB
testcase_08 AC 96 ms
77,832 KB
testcase_09 AC 57 ms
67,688 KB
testcase_10 AC 1,109 ms
175,000 KB
testcase_11 AC 890 ms
168,092 KB
testcase_12 AC 59 ms
68,420 KB
testcase_13 AC 104 ms
78,068 KB
testcase_14 AC 805 ms
156,428 KB
testcase_15 AC 41 ms
53,944 KB
testcase_16 AC 41 ms
53,816 KB
testcase_17 AC 40 ms
55,576 KB
testcase_18 AC 802 ms
155,824 KB
testcase_19 AC 98 ms
78,228 KB
testcase_20 AC 700 ms
144,296 KB
testcase_21 AC 1,090 ms
179,180 KB
testcase_22 AC 63 ms
70,212 KB
testcase_23 AC 58 ms
68,532 KB
testcase_24 AC 93 ms
78,356 KB
testcase_25 AC 87 ms
78,672 KB
testcase_26 AC 237 ms
94,372 KB
testcase_27 AC 301 ms
98,380 KB
testcase_28 AC 545 ms
117,744 KB
testcase_29 AC 263 ms
94,388 KB
testcase_30 AC 1,058 ms
174,636 KB
testcase_31 AC 64 ms
69,700 KB
testcase_32 AC 57 ms
67,324 KB
testcase_33 AC 63 ms
70,136 KB
testcase_34 AC 147 ms
83,220 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 = [defaultdict(int) for _ in range(n + 1)]
DP[0][1] = 1
for i in range(n):
    a = gcd(A[i], k)
    for j in DP[i].keys():
        DP[i + 1][j] += DP[i][j]
        DP[i + 1][j] %= mod
        nj = gcd(a * j, k)
        DP[i + 1][nj] += DP[i][j]
        DP[i + 1][nj] %= mod
if k == 1:
    DP[n][k] -= 1
print(DP[n][k])
0