結果

問題 No.1731 Product of Subsequence
ユーザー HydruHydru
提出日時 2021-11-06 15:06:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-08 04:59:51
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
77,056 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 48 ms
53,760 KB
testcase_05 AC 55 ms
60,672 KB
testcase_06 AC 48 ms
53,888 KB
testcase_07 AC 47 ms
54,144 KB
testcase_08 AC 69 ms
64,896 KB
testcase_09 AC 47 ms
53,376 KB
testcase_10 AC 364 ms
77,056 KB
testcase_11 AC 313 ms
76,928 KB
testcase_12 AC 55 ms
61,568 KB
testcase_13 AC 69 ms
66,432 KB
testcase_14 AC 292 ms
76,800 KB
testcase_15 AC 48 ms
53,504 KB
testcase_16 AC 48 ms
53,376 KB
testcase_17 AC 48 ms
53,632 KB
testcase_18 AC 345 ms
77,440 KB
testcase_19 AC 72 ms
67,328 KB
testcase_20 AC 283 ms
77,056 KB
testcase_21 AC 366 ms
76,928 KB
testcase_22 AC 68 ms
66,176 KB
testcase_23 AC 48 ms
53,760 KB
testcase_24 AC 69 ms
66,816 KB
testcase_25 AC 68 ms
65,920 KB
testcase_26 AC 114 ms
76,544 KB
testcase_27 AC 133 ms
76,800 KB
testcase_28 AC 215 ms
76,672 KB
testcase_29 AC 120 ms
76,672 KB
testcase_30 AC 394 ms
76,928 KB
testcase_31 AC 66 ms
66,176 KB
testcase_32 AC 48 ms
53,632 KB
testcase_33 AC 67 ms
66,304 KB
testcase_34 AC 77 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import defaultdict
mod=10**9+7
n,k=map(int,input().split())
if k==1:
    print(pow(2,n,mod)-1)
    exit()
A=list(map(lambda x:gcd(int(x),k),input().split()))
d=defaultdict(int)
d[1]=1
cnt=0
B=[]
for x in A:
    if x==1:
        cnt+=1
    else:
        B.append(x)

for i in B:
    d2=d.copy()
    for j in d2:
        m=gcd(k,i*j)
        d[m]=(d2[j]+d[m])%mod

print(d[k]*pow(2,cnt,mod)%mod)
0