結果

問題 No.1731 Product of Subsequence
ユーザー roarisroaris
提出日時 2021-11-05 22:20:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,112 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-11-08 04:44:43
合計ジャッジ時間 12,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 828 ms
77,824 KB
testcase_01 AC 46 ms
54,272 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 50 ms
59,648 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 58 ms
63,104 KB
testcase_06 AC 54 ms
61,696 KB
testcase_07 AC 50 ms
59,520 KB
testcase_08 AC 96 ms
67,200 KB
testcase_09 AC 51 ms
60,288 KB
testcase_10 AC 1,112 ms
78,208 KB
testcase_11 AC 957 ms
77,952 KB
testcase_12 AC 62 ms
64,896 KB
testcase_13 AC 101 ms
76,800 KB
testcase_14 AC 859 ms
77,440 KB
testcase_15 AC 47 ms
54,400 KB
testcase_16 AC 45 ms
53,760 KB
testcase_17 AC 47 ms
53,632 KB
testcase_18 AC 922 ms
78,080 KB
testcase_19 AC 97 ms
76,928 KB
testcase_20 AC 761 ms
77,696 KB
testcase_21 AC 1,110 ms
77,952 KB
testcase_22 AC 288 ms
77,312 KB
testcase_23 AC 50 ms
60,288 KB
testcase_24 AC 77 ms
66,048 KB
testcase_25 AC 69 ms
65,664 KB
testcase_26 AC 258 ms
76,928 KB
testcase_27 AC 320 ms
76,800 KB
testcase_28 AC 566 ms
76,928 KB
testcase_29 AC 281 ms
77,184 KB
testcase_30 AC 727 ms
77,824 KB
testcase_31 AC 289 ms
77,184 KB
testcase_32 AC 51 ms
59,520 KB
testcase_33 AC 89 ms
76,800 KB
testcase_34 AC 160 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from math import gcd

N, K = map(int, input().split())
A = list(map(int, input().split()))
MOD = 10**9+7

if K==1:
    exit(print((pow(2, N, MOD)-1)%MOD))
    
divs = []

for d in range(1, int(K**0.5)+1):
    if K%d==0:
        divs.append(d)
        
        if d!=K//d:
            divs.append(K//d)

divs.sort()
idx = defaultdict(int)

for i in range(len(divs)):
    idx[divs[i]] = i

M = len(idx.keys())
dp = [0]*M
dp[0] = 1

for i in range(N):
    ndp = [0]*M
    
    for j in range(M):
        ndp[j] += dp[j]
        ndp[j] %= MOD
        
        if divs[j]*A[i]%K==0:
            nj = M-1
        else:
            nj = idx[gcd(K, divs[j]*A[i])]
        
        ndp[nj] += dp[j]
        ndp[nj] %= MOD
    
    dp = ndp

print(dp[-1])
0