結果

問題 No.1731 Product of Subsequence
ユーザー rlangevinrlangevin
提出日時 2023-02-02 21:13:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,935 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 88,888 KB
最終ジャッジ日時 2024-07-02 07:54:27
合計ジャッジ時間 19,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,552 ms
88,768 KB
testcase_01 AC 39 ms
54,360 KB
testcase_02 AC 38 ms
54,308 KB
testcase_03 AC 38 ms
55,236 KB
testcase_04 AC 37 ms
55,444 KB
testcase_05 AC 50 ms
64,032 KB
testcase_06 AC 54 ms
65,808 KB
testcase_07 AC 40 ms
54,860 KB
testcase_08 AC 103 ms
76,492 KB
testcase_09 AC 57 ms
68,024 KB
testcase_10 AC 1,935 ms
86,528 KB
testcase_11 AC 1,632 ms
84,644 KB
testcase_12 AC 61 ms
69,160 KB
testcase_13 AC 137 ms
77,764 KB
testcase_14 AC 1,429 ms
85,116 KB
testcase_15 AC 40 ms
54,736 KB
testcase_16 AC 40 ms
54,596 KB
testcase_17 AC 38 ms
55,704 KB
testcase_18 AC 1,294 ms
86,600 KB
testcase_19 AC 127 ms
77,448 KB
testcase_20 AC 1,098 ms
82,836 KB
testcase_21 AC 1,912 ms
88,888 KB
testcase_22 AC 60 ms
70,128 KB
testcase_23 AC 58 ms
68,620 KB
testcase_24 AC 91 ms
77,180 KB
testcase_25 AC 72 ms
73,132 KB
testcase_26 AC 398 ms
77,960 KB
testcase_27 AC 503 ms
78,240 KB
testcase_28 AC 894 ms
79,148 KB
testcase_29 AC 419 ms
77,864 KB
testcase_30 AC 1,626 ms
86,588 KB
testcase_31 AC 59 ms
69,640 KB
testcase_32 AC 58 ms
68,572 KB
testcase_33 AC 61 ms
69,688 KB
testcase_34 AC 235 ms
77,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from math import gcd

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

pre = defaultdict(int)
pre[0] = 1
for i in range(N):
    dp = defaultdict(int)
    for k, v in pre.items():
        dp[k] += v
        if k == 0:
            na = A[i]
        else:
            na = A[i] * k
        dp[gcd(na, K)] += v
        dp[k] %= mod
        dp[gcd(na, K)] %= mod
                 
    pre, dp = dp, pre
print(pre[K])       
0