結果

問題 No.1731 Product of Subsequence
ユーザー irumo8202irumo8202
提出日時 2022-01-29 12:54:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-11-08 05:20:15
合計ジャッジ時間 6,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
77,056 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 48 ms
53,760 KB
testcase_04 AC 48 ms
53,376 KB
testcase_05 AC 55 ms
61,056 KB
testcase_06 AC 56 ms
60,800 KB
testcase_07 AC 49 ms
54,272 KB
testcase_08 AC 74 ms
67,328 KB
testcase_09 AC 67 ms
65,536 KB
testcase_10 AC 477 ms
77,184 KB
testcase_11 AC 414 ms
76,800 KB
testcase_12 AC 67 ms
65,536 KB
testcase_13 AC 69 ms
67,584 KB
testcase_14 AC 351 ms
76,928 KB
testcase_15 AC 46 ms
53,248 KB
testcase_16 AC 48 ms
53,248 KB
testcase_17 AC 46 ms
53,248 KB
testcase_18 AC 347 ms
77,056 KB
testcase_19 AC 72 ms
67,840 KB
testcase_20 AC 290 ms
76,928 KB
testcase_21 AC 444 ms
77,184 KB
testcase_22 AC 67 ms
65,408 KB
testcase_23 AC 66 ms
65,792 KB
testcase_24 AC 70 ms
67,584 KB
testcase_25 AC 67 ms
65,792 KB
testcase_26 AC 130 ms
76,928 KB
testcase_27 AC 154 ms
76,544 KB
testcase_28 AC 251 ms
76,928 KB
testcase_29 AC 135 ms
76,672 KB
testcase_30 AC 429 ms
77,184 KB
testcase_31 AC 66 ms
65,280 KB
testcase_32 AC 66 ms
65,280 KB
testcase_33 AC 67 ms
66,048 KB
testcase_34 AC 87 ms
74,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict

N, K = map(int, input().split())
A = list(map(int, input().split()))
MOD = 10 ** 9 + 7

dp = defaultdict(int)
dp[1] = 1

for a in A:
    m = math.gcd(a, K)
    for n, cnt in dp.copy().items():
        g = math.gcd(n * m, K)
        dp[g] += cnt
        dp[g] %= MOD

print(dp[K] - (K == 1))
0