結果

問題 No.1731 Product of Subsequence
ユーザー roarisroaris
提出日時 2021-11-05 22:18:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 78,196 KB
最終ジャッジ日時 2024-11-06 13:12:29
合計ジャッジ時間 12,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 810 ms
77,860 KB
testcase_01 AC 44 ms
54,380 KB
testcase_02 AC 43 ms
54,540 KB
testcase_03 AC 47 ms
60,068 KB
testcase_04 AC 44 ms
55,312 KB
testcase_05 AC 53 ms
64,296 KB
testcase_06 AC 50 ms
62,956 KB
testcase_07 AC 47 ms
61,148 KB
testcase_08 AC 88 ms
67,736 KB
testcase_09 WA -
testcase_10 AC 1,094 ms
78,196 KB
testcase_11 AC 931 ms
77,532 KB
testcase_12 AC 58 ms
65,716 KB
testcase_13 AC 92 ms
76,964 KB
testcase_14 AC 839 ms
77,572 KB
testcase_15 AC 43 ms
56,284 KB
testcase_16 WA -
testcase_17 AC 42 ms
53,968 KB
testcase_18 AC 898 ms
77,724 KB
testcase_19 AC 83 ms
76,820 KB
testcase_20 AC 736 ms
77,772 KB
testcase_21 AC 1,091 ms
78,116 KB
testcase_22 AC 267 ms
77,092 KB
testcase_23 WA -
testcase_24 AC 71 ms
67,224 KB
testcase_25 AC 65 ms
67,064 KB
testcase_26 AC 248 ms
77,028 KB
testcase_27 AC 309 ms
77,156 KB
testcase_28 AC 557 ms
76,916 KB
testcase_29 AC 269 ms
77,040 KB
testcase_30 AC 711 ms
77,832 KB
testcase_31 AC 274 ms
77,324 KB
testcase_32 WA -
testcase_33 AC 79 ms
76,912 KB
testcase_34 AC 148 ms
76,944 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()))
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
MOD = 10**9+7

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