結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-24 23:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,758 ms / 8,000 ms
コード長 610 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 77,376 KB
最終ジャッジ日時 2025-01-03 13:37:49
合計ジャッジ時間 60,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,324 KB
testcase_01 AC 39 ms
53,460 KB
testcase_02 AC 1,473 ms
77,376 KB
testcase_03 AC 46 ms
59,252 KB
testcase_04 AC 42 ms
52,964 KB
testcase_05 AC 46 ms
58,588 KB
testcase_06 AC 92 ms
70,988 KB
testcase_07 AC 65 ms
67,344 KB
testcase_08 AC 86 ms
71,888 KB
testcase_09 AC 62 ms
66,532 KB
testcase_10 AC 87 ms
70,580 KB
testcase_11 AC 105 ms
72,460 KB
testcase_12 AC 67 ms
67,044 KB
testcase_13 AC 78 ms
69,788 KB
testcase_14 AC 74 ms
69,316 KB
testcase_15 AC 87 ms
70,672 KB
testcase_16 AC 89 ms
70,904 KB
testcase_17 AC 63 ms
66,380 KB
testcase_18 AC 100 ms
73,176 KB
testcase_19 AC 81 ms
70,852 KB
testcase_20 AC 81 ms
70,504 KB
testcase_21 AC 1,580 ms
76,744 KB
testcase_22 AC 194 ms
76,640 KB
testcase_23 AC 4,966 ms
77,180 KB
testcase_24 AC 1,514 ms
77,140 KB
testcase_25 AC 4,046 ms
77,256 KB
testcase_26 AC 4,169 ms
77,116 KB
testcase_27 AC 1,980 ms
76,808 KB
testcase_28 AC 1,389 ms
76,932 KB
testcase_29 AC 3,416 ms
77,296 KB
testcase_30 AC 995 ms
76,768 KB
testcase_31 AC 1,990 ms
77,056 KB
testcase_32 AC 253 ms
76,756 KB
testcase_33 AC 2,880 ms
77,012 KB
testcase_34 AC 96 ms
72,444 KB
testcase_35 AC 434 ms
76,576 KB
testcase_36 AC 3,381 ms
77,060 KB
testcase_37 AC 597 ms
76,948 KB
testcase_38 AC 923 ms
76,892 KB
testcase_39 AC 2,072 ms
77,032 KB
testcase_40 AC 950 ms
76,736 KB
testcase_41 AC 5,209 ms
77,260 KB
testcase_42 AC 5,758 ms
77,368 KB
testcase_43 AC 5,719 ms
77,352 KB
testcase_44 AC 43 ms
53,308 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%7==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