結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,004 KB
testcase_01 AC 34 ms
52,988 KB
testcase_02 AC 1,185 ms
77,028 KB
testcase_03 AC 36 ms
59,056 KB
testcase_04 AC 35 ms
53,052 KB
testcase_05 AC 37 ms
59,168 KB
testcase_06 AC 74 ms
71,172 KB
testcase_07 AC 53 ms
66,368 KB
testcase_08 AC 70 ms
70,576 KB
testcase_09 AC 55 ms
65,028 KB
testcase_10 AC 77 ms
70,516 KB
testcase_11 AC 87 ms
72,460 KB
testcase_12 AC 53 ms
66,952 KB
testcase_13 AC 64 ms
69,756 KB
testcase_14 AC 59 ms
69,760 KB
testcase_15 AC 70 ms
70,796 KB
testcase_16 AC 69 ms
71,072 KB
testcase_17 AC 50 ms
66,100 KB
testcase_18 AC 79 ms
72,008 KB
testcase_19 AC 64 ms
69,244 KB
testcase_20 AC 66 ms
69,964 KB
testcase_21 AC 1,283 ms
76,636 KB
testcase_22 AC 155 ms
76,280 KB
testcase_23 AC 3,931 ms
77,132 KB
testcase_24 AC 1,213 ms
76,904 KB
testcase_25 AC 3,304 ms
77,064 KB
testcase_26 AC 3,422 ms
76,964 KB
testcase_27 AC 1,602 ms
76,480 KB
testcase_28 AC 1,105 ms
76,432 KB
testcase_29 AC 2,758 ms
77,256 KB
testcase_30 AC 804 ms
76,348 KB
testcase_31 AC 1,585 ms
77,000 KB
testcase_32 AC 201 ms
76,380 KB
testcase_33 AC 2,397 ms
76,732 KB
testcase_34 AC 82 ms
72,676 KB
testcase_35 AC 356 ms
76,480 KB
testcase_36 AC 2,843 ms
76,756 KB
testcase_37 AC 476 ms
76,628 KB
testcase_38 AC 733 ms
76,556 KB
testcase_39 AC 1,700 ms
76,800 KB
testcase_40 AC 791 ms
76,272 KB
testcase_41 AC 4,279 ms
77,220 KB
testcase_42 AC 4,783 ms
77,088 KB
testcase_43 AC 4,670 ms
77,028 KB
testcase_44 AC 37 ms
52,068 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%5==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