結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,624 KB
testcase_01 AC 37 ms
52,844 KB
testcase_02 AC 1,332 ms
77,004 KB
testcase_03 AC 41 ms
59,424 KB
testcase_04 AC 40 ms
52,536 KB
testcase_05 AC 43 ms
58,596 KB
testcase_06 AC 85 ms
71,852 KB
testcase_07 AC 60 ms
66,392 KB
testcase_08 AC 78 ms
70,660 KB
testcase_09 AC 55 ms
65,472 KB
testcase_10 AC 80 ms
70,512 KB
testcase_11 AC 90 ms
71,996 KB
testcase_12 AC 61 ms
66,612 KB
testcase_13 AC 72 ms
70,192 KB
testcase_14 AC 68 ms
69,344 KB
testcase_15 AC 84 ms
70,240 KB
testcase_16 AC 85 ms
71,664 KB
testcase_17 AC 58 ms
66,692 KB
testcase_18 AC 89 ms
72,404 KB
testcase_19 AC 77 ms
70,128 KB
testcase_20 AC 74 ms
70,796 KB
testcase_21 AC 1,450 ms
76,836 KB
testcase_22 AC 169 ms
76,772 KB
testcase_23 AC 4,553 ms
76,848 KB
testcase_24 AC 1,365 ms
77,264 KB
testcase_25 AC 3,765 ms
76,804 KB
testcase_26 AC 3,894 ms
77,304 KB
testcase_27 AC 1,821 ms
76,960 KB
testcase_28 AC 1,303 ms
77,080 KB
testcase_29 AC 3,185 ms
77,236 KB
testcase_30 AC 918 ms
76,372 KB
testcase_31 AC 1,806 ms
77,064 KB
testcase_32 AC 228 ms
76,636 KB
testcase_33 AC 2,643 ms
76,984 KB
testcase_34 AC 85 ms
72,848 KB
testcase_35 AC 401 ms
76,448 KB
testcase_36 AC 3,087 ms
76,944 KB
testcase_37 AC 549 ms
76,340 KB
testcase_38 AC 841 ms
76,828 KB
testcase_39 AC 1,906 ms
76,876 KB
testcase_40 AC 866 ms
76,680 KB
testcase_41 AC 4,785 ms
77,284 KB
testcase_42 AC 5,295 ms
77,328 KB
testcase_43 AC 5,270 ms
77,348 KB
testcase_44 AC 41 ms
53,440 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%6==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