結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-24 23:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,920 ms / 8,000 ms
コード長 610 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 77,376 KB
最終ジャッジ日時 2024-06-11 06:20:08
合計ジャッジ時間 50,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,028 KB
testcase_01 AC 39 ms
53,312 KB
testcase_02 AC 1,232 ms
76,888 KB
testcase_03 AC 42 ms
58,832 KB
testcase_04 AC 37 ms
52,700 KB
testcase_05 AC 42 ms
58,436 KB
testcase_06 AC 75 ms
70,580 KB
testcase_07 AC 56 ms
66,228 KB
testcase_08 AC 74 ms
70,600 KB
testcase_09 AC 54 ms
65,584 KB
testcase_10 AC 74 ms
70,916 KB
testcase_11 AC 84 ms
73,212 KB
testcase_12 AC 56 ms
66,660 KB
testcase_13 AC 69 ms
69,804 KB
testcase_14 AC 61 ms
69,188 KB
testcase_15 AC 76 ms
70,564 KB
testcase_16 AC 76 ms
70,528 KB
testcase_17 AC 56 ms
65,916 KB
testcase_18 AC 84 ms
71,528 KB
testcase_19 AC 68 ms
69,412 KB
testcase_20 AC 69 ms
69,992 KB
testcase_21 AC 1,322 ms
76,432 KB
testcase_22 AC 157 ms
76,544 KB
testcase_23 AC 4,116 ms
76,828 KB
testcase_24 AC 1,275 ms
76,992 KB
testcase_25 AC 3,434 ms
76,984 KB
testcase_26 AC 3,534 ms
77,112 KB
testcase_27 AC 1,646 ms
76,532 KB
testcase_28 AC 1,145 ms
77,032 KB
testcase_29 AC 2,940 ms
76,976 KB
testcase_30 AC 859 ms
76,560 KB
testcase_31 AC 1,709 ms
76,988 KB
testcase_32 AC 221 ms
76,168 KB
testcase_33 AC 2,525 ms
76,656 KB
testcase_34 AC 83 ms
73,952 KB
testcase_35 AC 372 ms
76,256 KB
testcase_36 AC 2,922 ms
77,156 KB
testcase_37 AC 515 ms
76,752 KB
testcase_38 AC 798 ms
76,356 KB
testcase_39 AC 1,812 ms
76,760 KB
testcase_40 AC 829 ms
76,348 KB
testcase_41 AC 4,535 ms
76,968 KB
testcase_42 AC 4,920 ms
77,376 KB
testcase_43 AC 4,851 ms
76,948 KB
testcase_44 AC 37 ms
52,592 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