結果

問題 No.1731 Product of Subsequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-05 21:55:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,324 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-11-08 04:37:34
合計ジャッジ時間 11,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,144 ms
80,384 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 46 ms
57,472 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 62 ms
64,512 KB
testcase_06 AC 59 ms
63,360 KB
testcase_07 AC 46 ms
57,728 KB
testcase_08 AC 98 ms
76,544 KB
testcase_09 AC 47 ms
58,240 KB
testcase_10 AC 685 ms
79,744 KB
testcase_11 AC 591 ms
79,232 KB
testcase_12 AC 60 ms
64,256 KB
testcase_13 AC 107 ms
76,928 KB
testcase_14 AC 514 ms
78,720 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 42 ms
52,224 KB
testcase_18 AC 983 ms
81,408 KB
testcase_19 AC 114 ms
76,800 KB
testcase_20 AC 784 ms
79,872 KB
testcase_21 AC 658 ms
79,616 KB
testcase_22 AC 83 ms
72,448 KB
testcase_23 AC 46 ms
58,368 KB
testcase_24 AC 99 ms
76,544 KB
testcase_25 AC 89 ms
76,544 KB
testcase_26 AC 187 ms
76,800 KB
testcase_27 AC 211 ms
76,928 KB
testcase_28 AC 412 ms
76,928 KB
testcase_29 AC 186 ms
77,184 KB
testcase_30 AC 1,324 ms
83,584 KB
testcase_31 AC 77 ms
69,760 KB
testcase_32 AC 47 ms
58,496 KB
testcase_33 AC 76 ms
69,376 KB
testcase_34 AC 129 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
A = list(map(int,input().split()))
mod = 10**9+7
if k == 1:
    print((pow(2,n,mod)-1)%mod)
    exit()
div = []
dnum = []
num = k

for i in range(2,int(k**0.5)+1):
    if num%i:
        continue
    count = 0
    while num%i == 0:
        num //= i
        count += 1
    div.append(i)
    dnum.append(count)
if num != 1:
    div.append(num)
    dnum.append(1)
l = len(div)
dic = {k:1}
for a in A:
    cand = [0]*l
    for i,d in enumerate(div):
        while a%d == 0:
            a //= d
            cand[i] += 1
    ndic = {}
    for x,v in dic.items():
        nex = x
        for i in range(l):
            for j in range(cand[i]):
                if nex%div[i] == 0:
                    nex //= div[i]
                else:
                    break
        ndic[nex] = (ndic.get(nex,0)+v)%mod
        ndic[x] = (ndic.get(x,0)+v)%mod
    dic = ndic

print(dic.get(1,0))
0