結果

問題 No.1761 Sequence Distance
ユーザー 👑 PCTprobabilityPCTprobability
提出日時 2021-10-24 23:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,220 ms / 8,000 ms
コード長 610 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 87,316 KB
実行使用メモリ 78,676 KB
最終ジャッジ日時 2023-09-02 00:00:31
合計ジャッジ時間 55,343 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,360 KB
testcase_01 AC 74 ms
71,456 KB
testcase_02 AC 1,364 ms
78,416 KB
testcase_03 AC 77 ms
75,668 KB
testcase_04 AC 74 ms
71,584 KB
testcase_05 AC 78 ms
75,728 KB
testcase_06 AC 114 ms
77,032 KB
testcase_07 AC 92 ms
76,704 KB
testcase_08 AC 112 ms
77,228 KB
testcase_09 AC 90 ms
76,872 KB
testcase_10 AC 112 ms
77,252 KB
testcase_11 AC 123 ms
77,248 KB
testcase_12 AC 94 ms
76,844 KB
testcase_13 AC 105 ms
77,424 KB
testcase_14 AC 100 ms
77,464 KB
testcase_15 AC 112 ms
77,348 KB
testcase_16 AC 111 ms
77,364 KB
testcase_17 AC 93 ms
76,672 KB
testcase_18 AC 127 ms
77,388 KB
testcase_19 AC 106 ms
77,232 KB
testcase_20 AC 107 ms
77,228 KB
testcase_21 AC 1,461 ms
77,512 KB
testcase_22 AC 195 ms
77,648 KB
testcase_23 AC 4,372 ms
78,676 KB
testcase_24 AC 1,380 ms
78,316 KB
testcase_25 AC 3,672 ms
78,152 KB
testcase_26 AC 3,832 ms
78,392 KB
testcase_27 AC 1,814 ms
77,756 KB
testcase_28 AC 1,266 ms
78,132 KB
testcase_29 AC 3,093 ms
78,460 KB
testcase_30 AC 914 ms
77,460 KB
testcase_31 AC 1,782 ms
78,272 KB
testcase_32 AC 253 ms
77,604 KB
testcase_33 AC 2,652 ms
78,004 KB
testcase_34 AC 117 ms
77,268 KB
testcase_35 AC 420 ms
77,468 KB
testcase_36 AC 3,083 ms
77,976 KB
testcase_37 AC 564 ms
77,672 KB
testcase_38 AC 854 ms
77,608 KB
testcase_39 AC 1,893 ms
77,920 KB
testcase_40 AC 886 ms
77,348 KB
testcase_41 AC 4,680 ms
78,192 KB
testcase_42 AC 5,196 ms
78,144 KB
testcase_43 AC 5,220 ms
78,008 KB
testcase_44 AC 71 ms
71,416 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