結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-24 22:59:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 611 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 278,600 KB
最終ジャッジ日時 2025-01-03 13:26:33
合計ジャッジ時間 111,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
213,472 KB
testcase_01 AC 45 ms
205,080 KB
testcase_02 AC 3,330 ms
278,600 KB
testcase_03 AC 49 ms
222,608 KB
testcase_04 AC 44 ms
54,348 KB
testcase_05 AC 48 ms
58,476 KB
testcase_06 AC 117 ms
76,544 KB
testcase_07 AC 68 ms
65,664 KB
testcase_08 AC 119 ms
76,720 KB
testcase_09 AC 70 ms
64,256 KB
testcase_10 AC 132 ms
76,928 KB
testcase_11 AC 139 ms
76,768 KB
testcase_12 AC 70 ms
66,176 KB
testcase_13 AC 97 ms
76,800 KB
testcase_14 AC 72 ms
68,224 KB
testcase_15 AC 115 ms
76,672 KB
testcase_16 AC 118 ms
76,672 KB
testcase_17 AC 63 ms
65,664 KB
testcase_18 AC 135 ms
76,800 KB
testcase_19 AC 99 ms
75,316 KB
testcase_20 AC 110 ms
76,768 KB
testcase_21 AC 3,035 ms
90,244 KB
testcase_22 AC 272 ms
77,152 KB
testcase_23 TLE -
testcase_24 AC 3,138 ms
110,632 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 3,763 ms
93,608 KB
testcase_28 AC 2,765 ms
99,208 KB
testcase_29 AC 7,372 ms
160,060 KB
testcase_30 AC 1,743 ms
82,020 KB
testcase_31 AC 4,194 ms
120,200 KB
testcase_32 AC 383 ms
77,424 KB
testcase_33 AC 6,508 ms
116,100 KB
testcase_34 AC 121 ms
76,924 KB
testcase_35 AC 625 ms
77,004 KB
testcase_36 AC 7,534 ms
139,896 KB
testcase_37 AC 1,000 ms
79,736 KB
testcase_38 AC 1,767 ms
85,172 KB
testcase_39 AC 4,238 ms
107,328 KB
testcase_40 AC 1,592 ms
80,436 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 44 ms
219,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n,m=map(int,input().split())
dp=[[0 for i in range(46)] for j in range(m+1)]
dp2=[[0 for i in range(46)] for j in range(m+1)]
dp[0][0]=2
dp[0][1]=2
for i in range(n-1):
  for j in range(0,m+1):
    for k in range(0,45):
      dp2[j+k][k+1]+=dp[j][k]
      dp2[j+k][k]+=dp[j][k]*2
      dp2[j+k][abs(k-1)]+=dp[j][k]
      if j+k+1>m:
        break
  if i%17==0:
    for j in range(0,m+1):
      for k in range(0,45):
        dp[j][k]=dp2[j][k]%mod
        dp2[j][k]=0
  else:
    for j in range(0,m+1):
      for k in range(0,45):
        dp[j][k]=dp2[j][k]
        dp2[j][k]=0 
print(dp[m][0]%mod)
0