結果

問題 No.2313 Product of Subsequence (hard)
ユーザー convexineqconvexineq
提出日時 2023-05-25 10:51:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 143,488 KB
最終ジャッジ日時 2024-06-06 13:31:57
合計ジャッジ時間 11,005 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 56 ms
65,408 KB
testcase_04 AC 61 ms
66,816 KB
testcase_05 AC 64 ms
69,760 KB
testcase_06 AC 59 ms
66,560 KB
testcase_07 AC 57 ms
66,688 KB
testcase_08 AC 735 ms
130,732 KB
testcase_09 AC 192 ms
99,108 KB
testcase_10 AC 472 ms
141,144 KB
testcase_11 AC 176 ms
95,232 KB
testcase_12 AC 384 ms
132,992 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

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

MOD = 998244353

from math import gcd
for i in range(n):
    a[i] = gcd(a[i],k)

from collections import defaultdict
d = defaultdict(int)
d[1] = 1
for ai in a:
    nd = d.copy()
    for r,v in d.items():
        nr = gcd(ai*r,k)
        nd[nr] += v
        nd[nr] %= MOD
    d = nd

print(d[k])








0