結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-24 22:59:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 611 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 194,580 KB
最終ジャッジ日時 2024-06-11 06:13:04
合計ジャッジ時間 18,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 2,364 ms
117,108 KB
testcase_03 AC 42 ms
58,112 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 44 ms
58,368 KB
testcase_06 AC 103 ms
76,416 KB
testcase_07 AC 57 ms
65,408 KB
testcase_08 AC 98 ms
76,288 KB
testcase_09 AC 55 ms
64,128 KB
testcase_10 AC 102 ms
76,288 KB
testcase_11 AC 119 ms
76,416 KB
testcase_12 AC 59 ms
65,664 KB
testcase_13 AC 86 ms
76,544 KB
testcase_14 AC 65 ms
67,968 KB
testcase_15 AC 98 ms
76,288 KB
testcase_16 AC 95 ms
76,288 KB
testcase_17 AC 57 ms
65,152 KB
testcase_18 AC 115 ms
76,928 KB
testcase_19 AC 83 ms
75,392 KB
testcase_20 AC 88 ms
76,288 KB
testcase_21 AC 2,291 ms
88,900 KB
testcase_22 AC 225 ms
76,952 KB
testcase_23 TLE -
testcase_24 AC 2,303 ms
109,704 KB
testcase_25 AC 6,679 ms
166,872 KB
testcase_26 AC 6,684 ms
180,012 KB
testcase_27 AC 2,819 ms
93,768 KB
testcase_28 AC 2,045 ms
100,200 KB
testcase_29 AC 5,460 ms
160,188 KB
testcase_30 AC 1,357 ms
81,696 KB
testcase_31 AC 3,087 ms
121,200 KB
testcase_32 AC 306 ms
77,432 KB
testcase_33 AC 4,348 ms
113,980 KB
testcase_34 AC 100 ms
76,868 KB
testcase_35 AC 491 ms
76,760 KB
testcase_36 AC 5,238 ms
140,028 KB
testcase_37 AC 782 ms
79,588 KB
testcase_38 AC 1,325 ms
85,352 KB
testcase_39 AC 3,240 ms
107,844 KB
testcase_40 AC 1,282 ms
80,556 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

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