結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-24 23:02:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,637 ms / 8,000 ms
コード長 610 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 77,252 KB
最終ジャッジ日時 2024-06-11 06:21:11
合計ジャッジ時間 47,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,636 KB
testcase_01 AC 33 ms
52,940 KB
testcase_02 AC 1,173 ms
77,052 KB
testcase_03 AC 36 ms
58,096 KB
testcase_04 AC 33 ms
53,976 KB
testcase_05 AC 36 ms
58,464 KB
testcase_06 AC 70 ms
70,824 KB
testcase_07 AC 51 ms
65,880 KB
testcase_08 AC 69 ms
71,224 KB
testcase_09 AC 49 ms
66,444 KB
testcase_10 AC 70 ms
70,788 KB
testcase_11 AC 88 ms
72,624 KB
testcase_12 AC 57 ms
66,260 KB
testcase_13 AC 65 ms
69,664 KB
testcase_14 AC 56 ms
68,624 KB
testcase_15 AC 75 ms
71,360 KB
testcase_16 AC 72 ms
71,128 KB
testcase_17 AC 51 ms
66,872 KB
testcase_18 AC 79 ms
72,848 KB
testcase_19 AC 63 ms
70,412 KB
testcase_20 AC 65 ms
70,516 KB
testcase_21 AC 1,323 ms
76,492 KB
testcase_22 AC 160 ms
76,212 KB
testcase_23 AC 3,902 ms
77,176 KB
testcase_24 AC 1,213 ms
77,040 KB
testcase_25 AC 3,299 ms
76,768 KB
testcase_26 AC 3,436 ms
77,252 KB
testcase_27 AC 1,634 ms
76,424 KB
testcase_28 AC 1,106 ms
76,756 KB
testcase_29 AC 2,752 ms
77,184 KB
testcase_30 AC 817 ms
76,572 KB
testcase_31 AC 1,636 ms
76,936 KB
testcase_32 AC 201 ms
76,448 KB
testcase_33 AC 2,346 ms
76,784 KB
testcase_34 AC 77 ms
73,652 KB
testcase_35 AC 355 ms
76,304 KB
testcase_36 AC 2,767 ms
76,732 KB
testcase_37 AC 469 ms
76,172 KB
testcase_38 AC 731 ms
76,560 KB
testcase_39 AC 1,676 ms
76,544 KB
testcase_40 AC 768 ms
76,444 KB
testcase_41 AC 4,217 ms
77,020 KB
testcase_42 AC 4,585 ms
77,152 KB
testcase_43 AC 4,637 ms
77,076 KB
testcase_44 AC 33 ms
52,092 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%9==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