結果

問題 No.2313 Product of Subsequence (hard)
ユーザー prussian_coderprussian_coder
提出日時 2023-05-24 21:14:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 348 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 130,688 KB
最終ジャッジ日時 2024-06-06 08:01:04
合計ジャッジ時間 8,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 46 ms
62,208 KB
testcase_04 AC 52 ms
64,384 KB
testcase_05 AC 53 ms
64,512 KB
testcase_06 AC 51 ms
63,360 KB
testcase_07 AC 48 ms
62,976 KB
testcase_08 AC 302 ms
114,192 KB
testcase_09 AC 158 ms
97,664 KB
testcase_10 AC 314 ms
122,720 KB
testcase_11 AC 143 ms
91,392 KB
testcase_12 AC 294 ms
120,064 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 #

N,K=map(int,input().split())
import math
B=[int(x) for x in input().split()]
A=sorted([math.gcd(a,K) for a in B])

mod=998244353

dp=dict()
dp[1]=1
dp2=dp.copy()
for i in range(N):
	a=A[i]
	for k in dp:
		p = k * math.gcd(K//k,a)
		if not p in dp2:
			dp2[p]=0
		dp2[p]+=dp[k]
		dp2[p]%=mod
	dp=dp2.copy()
if K in dp:
	print(dp[K])
else:
	print(0)
0