結果
問題 | No.2313 Product of Subsequence (hard) |
ユーザー | prussian_coder |
提出日時 | 2023-05-24 21:06:25 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 310 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,088 KB |
実行使用メモリ | 171,292 KB |
最終ジャッジ日時 | 2024-06-06 07:56:35 |
合計ジャッジ時間 | 12,920 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
171,292 KB |
testcase_01 | AC | 36 ms
52,476 KB |
testcase_02 | AC | 36 ms
53,716 KB |
testcase_03 | AC | 50 ms
62,872 KB |
testcase_04 | AC | 55 ms
63,712 KB |
testcase_05 | AC | 78 ms
66,676 KB |
testcase_06 | AC | 51 ms
64,792 KB |
testcase_07 | AC | 60 ms
63,736 KB |
testcase_08 | AC | 2,953 ms
109,420 KB |
testcase_09 | AC | 310 ms
97,744 KB |
testcase_10 | AC | 1,316 ms
117,000 KB |
testcase_11 | AC | 396 ms
89,396 KB |
testcase_12 | AC | 958 ms
114,340 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 | -- | - |
ソースコード
N,K=map(int,input().split()) import math A=[int(x) for x in input().split()] 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)