結果

問題 No.2313 Product of Subsequence (hard)
ユーザー とりゐとりゐ
提出日時 2023-05-23 22:00:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 193,664 KB
最終ジャッジ日時 2024-06-06 07:38:31
合計ジャッジ時間 10,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
193,664 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 71 ms
64,896 KB
testcase_04 AC 60 ms
65,792 KB
testcase_05 AC 66 ms
67,968 KB
testcase_06 AC 62 ms
65,920 KB
testcase_07 AC 61 ms
65,664 KB
testcase_08 AC 677 ms
127,124 KB
testcase_09 AC 208 ms
97,920 KB
testcase_10 AC 478 ms
136,800 KB
testcase_11 AC 181 ms
96,020 KB
testcase_12 AC 396 ms
134,784 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())
a=list(map(int,input().split()))
mod=998244353
if k==1:
  print(pow(2,n,mod)-1)
  exit()
import math
from collections import defaultdict
a=[math.gcd(i,k) for i in a]
d=defaultdict(int)
d[1]=1
for i in a:
  d2=d.copy()
  for j in d2:
    m=math.gcd(k,i*j)
    d[m]=(d2[j]+d[m])%mod
print(d[k]%mod)
0