結果

問題 No.1731 Product of Subsequence
ユーザー ygd.ygd.
提出日時 2021-11-07 16:31:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,154 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-11-08 05:07:29
合計ジャッジ時間 13,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 943 ms
81,024 KB
testcase_01 AC 56 ms
60,160 KB
testcase_02 AC 59 ms
60,160 KB
testcase_03 AC 58 ms
60,544 KB
testcase_04 AC 59 ms
59,776 KB
testcase_05 AC 66 ms
62,720 KB
testcase_06 AC 61 ms
62,208 KB
testcase_07 AC 60 ms
60,672 KB
testcase_08 AC 91 ms
68,736 KB
testcase_09 AC 60 ms
61,312 KB
testcase_10 AC 1,154 ms
81,792 KB
testcase_11 AC 984 ms
80,640 KB
testcase_12 AC 81 ms
68,224 KB
testcase_13 AC 108 ms
76,928 KB
testcase_14 AC 835 ms
80,128 KB
testcase_15 AC 56 ms
59,904 KB
testcase_16 AC 55 ms
60,416 KB
testcase_17 AC 54 ms
60,160 KB
testcase_18 AC 772 ms
82,304 KB
testcase_19 AC 108 ms
77,056 KB
testcase_20 AC 638 ms
79,744 KB
testcase_21 AC 1,106 ms
81,536 KB
testcase_22 AC 80 ms
69,504 KB
testcase_23 AC 58 ms
61,568 KB
testcase_24 AC 87 ms
69,120 KB
testcase_25 AC 79 ms
68,096 KB
testcase_26 AC 260 ms
77,184 KB
testcase_27 AC 317 ms
77,568 KB
testcase_28 AC 548 ms
77,952 KB
testcase_29 AC 268 ms
77,184 KB
testcase_30 AC 951 ms
81,024 KB
testcase_31 AC 86 ms
69,120 KB
testcase_32 AC 61 ms
61,824 KB
testcase_33 AC 85 ms
69,504 KB
testcase_34 AC 162 ms
77,056 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()))
    if K == 1:
        ans = pow(2,N,MOD) - 1 #一つも選ばないのはダメ
        print(ans);exit()

    #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