結果

問題 No.1731 Product of Subsequence
ユーザー tassei903tassei903
提出日時 2021-11-06 10:07:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-11-07 04:56:14
合計ジャッジ時間 16,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,268 ms
83,840 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 46 ms
54,016 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 60 ms
63,360 KB
testcase_06 AC 59 ms
62,720 KB
testcase_07 AC 47 ms
53,504 KB
testcase_08 AC 117 ms
76,288 KB
testcase_09 WA -
testcase_10 AC 1,503 ms
84,608 KB
testcase_11 AC 1,274 ms
82,816 KB
testcase_12 AC 69 ms
67,072 KB
testcase_13 AC 146 ms
77,440 KB
testcase_14 AC 1,174 ms
81,920 KB
testcase_15 AC 47 ms
53,888 KB
testcase_16 WA -
testcase_17 AC 46 ms
53,888 KB
testcase_18 AC 1,048 ms
84,096 KB
testcase_19 AC 132 ms
77,056 KB
testcase_20 AC 865 ms
81,792 KB
testcase_21 AC 1,488 ms
84,608 KB
testcase_22 AC 72 ms
68,096 KB
testcase_23 WA -
testcase_24 AC 110 ms
76,416 KB
testcase_25 AC 90 ms
72,576 KB
testcase_26 AC 341 ms
77,440 KB
testcase_27 AC 422 ms
77,824 KB
testcase_28 AC 727 ms
78,592 KB
testcase_29 AC 350 ms
77,440 KB
testcase_30 AC 1,315 ms
84,736 KB
testcase_31 AC 72 ms
68,608 KB
testcase_32 WA -
testcase_33 AC 73 ms
68,352 KB
testcase_34 AC 220 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 10**9+7
n,k = na()
if k==1:
    print((pow(2,n,mod)-1)%mod)
a = na()
from collections import defaultdict
from math import gcd
dp = defaultdict(int)
dp[1] = 1

mod = 10**9+7
for i in range(n):
    p = defaultdict(int)
    p,dp = dp,p
    for j in p:
        nj = gcd(k,j*a[i])
        dp[nj]+=p[j]
        dp[j]+=p[j]
        if dp[nj]>=mod:
            dp[nj]-=mod
        if dp[j]>=mod:
            dp[j]-=mod
print(dp[k])
0