結果

問題 No.1731 Product of Subsequence
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-07 03:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,417 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-11-08 05:05:39
合計ジャッジ時間 16,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,192 ms
88,192 KB
testcase_01 AC 48 ms
53,504 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 48 ms
53,376 KB
testcase_04 AC 47 ms
53,760 KB
testcase_05 AC 60 ms
62,592 KB
testcase_06 AC 63 ms
63,488 KB
testcase_07 AC 48 ms
53,632 KB
testcase_08 AC 111 ms
76,416 KB
testcase_09 AC 68 ms
66,432 KB
testcase_10 AC 1,414 ms
84,096 KB
testcase_11 AC 1,199 ms
86,016 KB
testcase_12 AC 69 ms
66,432 KB
testcase_13 AC 145 ms
77,312 KB
testcase_14 AC 1,061 ms
81,280 KB
testcase_15 AC 47 ms
53,632 KB
testcase_16 AC 47 ms
53,760 KB
testcase_17 AC 48 ms
53,760 KB
testcase_18 AC 963 ms
83,584 KB
testcase_19 AC 137 ms
77,184 KB
testcase_20 AC 825 ms
81,152 KB
testcase_21 AC 1,417 ms
87,808 KB
testcase_22 AC 74 ms
68,480 KB
testcase_23 AC 69 ms
66,560 KB
testcase_24 AC 113 ms
76,928 KB
testcase_25 AC 94 ms
73,856 KB
testcase_26 AC 339 ms
77,824 KB
testcase_27 AC 412 ms
77,696 KB
testcase_28 AC 696 ms
79,488 KB
testcase_29 AC 357 ms
77,568 KB
testcase_30 AC 1,247 ms
89,216 KB
testcase_31 AC 73 ms
68,608 KB
testcase_32 AC 68 ms
65,920 KB
testcase_33 AC 75 ms
68,864 KB
testcase_34 AC 220 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
mod = 10**9+7
from collections import defaultdict
import math

dp = defaultdict(lambda: 0)
dp[1] = 1
for a in A:
    nx = defaultdict(lambda: 0)
    for j, v in dp.items():
        nx[j] += v
        nx[j] %= mod
        g = math.gcd(j*a, k)
        nx[g] += v
        nx[g] %= mod
    dp = nx

if k == 1:
    print((dp[k]-1)%mod)
else:
    print(dp[k]%mod)
0