結果

問題 No.2313 Product of Subsequence (hard)
ユーザー convexineqconvexineq
提出日時 2023-05-25 12:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,926 ms / 4,000 ms
コード長 676 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,944 KB
最終ジャッジ日時 2024-07-21 08:37:23
合計ジャッジ時間 41,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 52 ms
61,056 KB
testcase_04 AC 52 ms
61,440 KB
testcase_05 AC 57 ms
62,720 KB
testcase_06 AC 52 ms
61,056 KB
testcase_07 AC 53 ms
61,440 KB
testcase_08 AC 291 ms
130,460 KB
testcase_09 AC 166 ms
96,208 KB
testcase_10 AC 289 ms
140,964 KB
testcase_11 AC 144 ms
95,744 KB
testcase_12 AC 292 ms
132,352 KB
testcase_13 AC 3,919 ms
146,432 KB
testcase_14 AC 3,926 ms
146,560 KB
testcase_15 AC 3,902 ms
146,944 KB
testcase_16 AC 3,874 ms
146,944 KB
testcase_17 AC 3,735 ms
146,816 KB
testcase_18 AC 3,727 ms
146,944 KB
testcase_19 AC 3,681 ms
146,560 KB
testcase_20 AC 3,723 ms
146,816 KB
testcase_21 AC 45 ms
57,856 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 246 ms
140,928 KB
testcase_26 AC 169 ms
106,056 KB
testcase_27 AC 3,588 ms
141,164 KB
testcase_28 AC 276 ms
143,744 KB
testcase_29 AC 295 ms
146,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

n,k = map(int,readline().split())
*a, = map(int,readline().split())

from math import gcd
MOD = 998244353

div = []
for i in range(1,k+1):
    if i*i > k: break
    if k%i==0:
        div.append(i)
        if i*i < k:
            div.append(k//i)

div.sort()
za = {v:i for i,v in enumerate(div)}
L = len(za)

nxt = [[0]*L for _ in range(L)]
for i in range(L):
    for j in range(1,L):
        nxt[i][j] = nxt[j][i] = za[gcd(div[i]*div[j],k)]

dp = [0]*L
dp[0] = 1
for ai in a:
    idx = za[gcd(ai,k)]
    for i in range(L)[::-1]:
        nidx = nxt[idx][i]
        v = dp[i]
        dp[nidx] = (dp[nidx] + v)%MOD

print(dp[-1]-(k==1))
0