結果

問題 No.1731 Product of Subsequence
ユーザー irumo8202irumo8202
提出日時 2022-01-29 13:15:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 270 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 89,496 KB
最終ジャッジ日時 2025-01-01 22:54:10
合計ジャッジ時間 11,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 852 ms
85,228 KB
testcase_01 AC 31 ms
53,108 KB
testcase_02 AC 34 ms
53,464 KB
testcase_03 RE -
testcase_04 AC 35 ms
52,692 KB
testcase_05 AC 41 ms
61,516 KB
testcase_06 AC 39 ms
61,276 KB
testcase_07 RE -
testcase_08 AC 59 ms
68,288 KB
testcase_09 AC 38 ms
63,584 KB
testcase_10 AC 1,012 ms
88,752 KB
testcase_11 AC 876 ms
85,452 KB
testcase_12 RE -
testcase_13 AC 80 ms
76,584 KB
testcase_14 AC 832 ms
84,476 KB
testcase_15 RE -
testcase_16 AC 37 ms
52,812 KB
testcase_17 AC 36 ms
53,332 KB
testcase_18 AC 648 ms
80,208 KB
testcase_19 AC 104 ms
76,912 KB
testcase_20 AC 550 ms
79,244 KB
testcase_21 AC 1,034 ms
89,496 KB
testcase_22 AC 46 ms
64,728 KB
testcase_23 AC 40 ms
62,376 KB
testcase_24 AC 62 ms
74,340 KB
testcase_25 AC 51 ms
69,392 KB
testcase_26 AC 233 ms
77,216 KB
testcase_27 AC 300 ms
77,696 KB
testcase_28 AC 502 ms
79,592 KB
testcase_29 AC 240 ms
77,376 KB
testcase_30 AC 888 ms
87,228 KB
testcase_31 AC 43 ms
64,880 KB
testcase_32 AC 39 ms
62,416 KB
testcase_33 AC 44 ms
64,844 KB
testcase_34 AC 133 ms
76,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N, K, *A = map(int, open(0).read().split())
M = 1000000007

dp = {1: 1}
for a in A:
    for n, c in dp.copy().items():
        g = math.gcd(a * n, K)
        if g in dp:
            dp[g] += c
        else:
            dp[g] = c

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