結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-25 09:38:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,698 ms / 8,000 ms
コード長 610 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-06-11 06:31:05
合計ジャッジ時間 39,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,876 KB
testcase_01 AC 38 ms
53,296 KB
testcase_02 AC 948 ms
77,044 KB
testcase_03 AC 43 ms
58,932 KB
testcase_04 AC 39 ms
53,016 KB
testcase_05 AC 40 ms
58,528 KB
testcase_06 AC 75 ms
71,152 KB
testcase_07 AC 53 ms
64,384 KB
testcase_08 AC 75 ms
71,632 KB
testcase_09 AC 57 ms
65,224 KB
testcase_10 AC 76 ms
70,172 KB
testcase_11 AC 84 ms
72,528 KB
testcase_12 AC 57 ms
65,028 KB
testcase_13 AC 69 ms
69,580 KB
testcase_14 AC 66 ms
68,968 KB
testcase_15 AC 74 ms
70,588 KB
testcase_16 AC 73 ms
70,340 KB
testcase_17 AC 53 ms
65,528 KB
testcase_18 AC 83 ms
72,768 KB
testcase_19 AC 68 ms
69,592 KB
testcase_20 AC 69 ms
69,608 KB
testcase_21 AC 1,055 ms
76,636 KB
testcase_22 AC 140 ms
76,552 KB
testcase_23 AC 3,056 ms
76,584 KB
testcase_24 AC 962 ms
76,596 KB
testcase_25 AC 2,626 ms
76,592 KB
testcase_26 AC 2,673 ms
76,772 KB
testcase_27 AC 1,306 ms
76,344 KB
testcase_28 AC 897 ms
76,584 KB
testcase_29 AC 2,303 ms
76,752 KB
testcase_30 AC 673 ms
76,356 KB
testcase_31 AC 1,256 ms
76,832 KB
testcase_32 AC 178 ms
76,500 KB
testcase_33 AC 1,874 ms
76,576 KB
testcase_34 AC 76 ms
73,464 KB
testcase_35 AC 301 ms
76,640 KB
testcase_36 AC 2,323 ms
76,428 KB
testcase_37 AC 400 ms
76,308 KB
testcase_38 AC 604 ms
76,360 KB
testcase_39 AC 1,338 ms
76,588 KB
testcase_40 AC 630 ms
76,604 KB
testcase_41 AC 3,272 ms
76,944 KB
testcase_42 AC 3,698 ms
77,228 KB
testcase_43 AC 3,642 ms
76,608 KB
testcase_44 AC 37 ms
52,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n,m=map(int,input().split())
dp=[[0 for i in range(33)] for j in range(m+1)]
dp2=[[0 for i in range(33)] 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,32):
      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%6==0:
    for j in range(0,m+1):
      for k in range(0,32):
        dp[j][k]=dp2[j][k]%mod
        dp2[j][k]=0
  else:
    for j in range(0,m+1):
      for k in range(0,32):
        dp[j][k]=dp2[j][k]
        dp2[j][k]=0 
print(dp[m][0]%mod)
0