結果

問題 No.1731 Product of Subsequence
ユーザー ygd.ygd.
提出日時 2021-11-07 16:30:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 82,316 KB
最終ジャッジ日時 2024-11-14 03:13:38
合計ジャッジ時間 11,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 894 ms
81,084 KB
testcase_01 AC 46 ms
60,864 KB
testcase_02 AC 46 ms
60,868 KB
testcase_03 AC 46 ms
60,500 KB
testcase_04 AC 47 ms
60,656 KB
testcase_05 AC 50 ms
63,776 KB
testcase_06 AC 51 ms
64,460 KB
testcase_07 AC 47 ms
60,860 KB
testcase_08 AC 75 ms
69,336 KB
testcase_09 WA -
testcase_10 AC 1,083 ms
81,532 KB
testcase_11 AC 923 ms
80,640 KB
testcase_12 AC 61 ms
69,680 KB
testcase_13 AC 89 ms
77,212 KB
testcase_14 AC 784 ms
80,228 KB
testcase_15 AC 45 ms
61,204 KB
testcase_16 WA -
testcase_17 AC 46 ms
60,780 KB
testcase_18 AC 729 ms
82,316 KB
testcase_19 AC 88 ms
77,264 KB
testcase_20 AC 595 ms
79,832 KB
testcase_21 AC 1,036 ms
82,116 KB
testcase_22 AC 62 ms
70,224 KB
testcase_23 WA -
testcase_24 AC 72 ms
70,220 KB
testcase_25 AC 62 ms
68,156 KB
testcase_26 AC 231 ms
77,248 KB
testcase_27 AC 291 ms
77,424 KB
testcase_28 AC 517 ms
78,060 KB
testcase_29 AC 245 ms
77,304 KB
testcase_30 AC 887 ms
81,492 KB
testcase_31 AC 61 ms
70,108 KB
testcase_32 WA -
testcase_33 AC 62 ms
71,204 KB
testcase_34 AC 142 ms
77,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline
import math
import copy
from collections import defaultdict 


def main():
    N,K = map(int,input().split()); MOD = pow(10,9) + 7
    A = list(map(int,input().split()))

    #dp[v]:vで割れる値
    dp = defaultdict(int)
    dp[1] = 1
    for i,a in enumerate(A):
        p = copy.copy(dp)
        p,dp = dp,p
        for v in p:
            nv = math.gcd(K,v*a)
            dp[nv] += p[v]
            dp[nv] %= MOD
    ans = dp[K]%MOD
    print(ans)

if __name__ == '__main__':
    main()
0