結果

問題 No.1731 Product of Subsequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-05 21:51:29
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,063 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 82,768 KB
最終ジャッジ日時 2024-11-06 12:38:47
合計ジャッジ時間 21,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,988 ms
82,336 KB
testcase_01 AC 38 ms
52,836 KB
testcase_02 AC 37 ms
53,120 KB
testcase_03 AC 41 ms
58,592 KB
testcase_04 AC 38 ms
52,512 KB
testcase_05 AC 62 ms
69,268 KB
testcase_06 AC 50 ms
63,076 KB
testcase_07 AC 42 ms
58,672 KB
testcase_08 AC 131 ms
76,640 KB
testcase_09 AC 42 ms
59,028 KB
testcase_10 TLE -
testcase_11 AC 1,753 ms
80,336 KB
testcase_12 AC 55 ms
65,648 KB
testcase_13 AC 91 ms
76,904 KB
testcase_14 AC 1,568 ms
79,972 KB
testcase_15 AC 39 ms
52,456 KB
testcase_16 AC 38 ms
52,476 KB
testcase_17 AC 37 ms
53,780 KB
testcase_18 AC 1,768 ms
81,408 KB
testcase_19 AC 83 ms
76,468 KB
testcase_20 AC 1,394 ms
78,924 KB
testcase_21 TLE -
testcase_22 AC 72 ms
73,720 KB
testcase_23 AC 41 ms
58,692 KB
testcase_24 AC 110 ms
76,940 KB
testcase_25 AC 90 ms
76,684 KB
testcase_26 AC 400 ms
76,804 KB
testcase_27 AC 481 ms
77,300 KB
testcase_28 AC 938 ms
77,492 KB
testcase_29 AC 396 ms
76,876 KB
testcase_30 TLE -
testcase_31 AC 70 ms
71,540 KB
testcase_32 AC 41 ms
58,812 KB
testcase_33 AC 70 ms
71,492 KB
testcase_34 AC 192 ms
76,904 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 = {1: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():
        num = x
        cand2 = [0]*l
        for i,d in enumerate(div):
            while num%d == 0:
                num //= d
                cand2[i] += 1
        nex = 1
        for i,d in enumerate(div):
            if cand[i]+cand2[i] > dnum[i]:
                nex *= pow(d,dnum[i])
            else:
                nex *= pow(d,cand[i]+cand2[i])
        ndic[nex] = (ndic.get(nex,0)+v)%mod
        ndic[x] = (ndic.get(x,0)+v)%mod
    dic = ndic

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