結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 869 ms
84,820 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 RE -
testcase_04 AC 37 ms
52,208 KB
testcase_05 AC 43 ms
60,304 KB
testcase_06 AC 44 ms
60,032 KB
testcase_07 RE -
testcase_08 AC 69 ms
67,712 KB
testcase_09 AC 47 ms
61,568 KB
testcase_10 AC 1,123 ms
88,140 KB
testcase_11 AC 892 ms
85,112 KB
testcase_12 RE -
testcase_13 AC 87 ms
75,996 KB
testcase_14 AC 792 ms
83,712 KB
testcase_15 RE -
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 656 ms
79,200 KB
testcase_19 AC 100 ms
76,688 KB
testcase_20 AC 534 ms
78,756 KB
testcase_21 AC 1,029 ms
89,120 KB
testcase_22 AC 49 ms
64,000 KB
testcase_23 AC 44 ms
61,952 KB
testcase_24 AC 68 ms
73,984 KB
testcase_25 AC 57 ms
68,224 KB
testcase_26 AC 260 ms
76,636 KB
testcase_27 AC 312 ms
77,256 KB
testcase_28 AC 514 ms
79,000 KB
testcase_29 AC 260 ms
76,812 KB
testcase_30 AC 889 ms
86,412 KB
testcase_31 AC 49 ms
64,092 KB
testcase_32 AC 45 ms
60,972 KB
testcase_33 AC 51 ms
64,256 KB
testcase_34 AC 145 ms
76,208 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