結果

問題 No.1761 Sequence Distance
ユーザー PCTprobabilityPCTprobability
提出日時 2021-10-16 06:04:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,294 ms / 8,000 ms
コード長 550 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-06-11 05:54:56
合計ジャッジ時間 40,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 1,083 ms
77,312 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 74 ms
70,144 KB
testcase_07 AC 60 ms
65,792 KB
testcase_08 AC 64 ms
66,816 KB
testcase_09 AC 58 ms
64,764 KB
testcase_10 AC 76 ms
70,400 KB
testcase_11 AC 87 ms
72,576 KB
testcase_12 AC 66 ms
66,304 KB
testcase_13 AC 75 ms
68,992 KB
testcase_14 AC 64 ms
64,768 KB
testcase_15 AC 82 ms
70,912 KB
testcase_16 AC 70 ms
66,560 KB
testcase_17 AC 65 ms
65,408 KB
testcase_18 AC 87 ms
73,088 KB
testcase_19 AC 67 ms
65,664 KB
testcase_20 AC 75 ms
69,120 KB
testcase_21 AC 769 ms
76,484 KB
testcase_22 AC 124 ms
76,288 KB
testcase_23 AC 3,309 ms
77,568 KB
testcase_24 AC 1,043 ms
77,568 KB
testcase_25 AC 2,670 ms
76,800 KB
testcase_26 AC 2,921 ms
77,184 KB
testcase_27 AC 947 ms
76,416 KB
testcase_28 AC 848 ms
76,928 KB
testcase_29 AC 2,375 ms
77,056 KB
testcase_30 AC 458 ms
76,416 KB
testcase_31 AC 1,347 ms
77,056 KB
testcase_32 AC 144 ms
76,288 KB
testcase_33 AC 1,566 ms
76,660 KB
testcase_34 AC 84 ms
71,936 KB
testcase_35 AC 186 ms
76,160 KB
testcase_36 AC 2,126 ms
76,672 KB
testcase_37 AC 295 ms
76,544 KB
testcase_38 AC 491 ms
76,416 KB
testcase_39 AC 1,182 ms
76,900 KB
testcase_40 AC 406 ms
76,544 KB
testcase_41 AC 3,667 ms
76,988 KB
testcase_42 AC 4,294 ms
77,056 KB
testcase_43 AC 4,143 ms
77,056 KB
testcase_44 AC 41 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n,m=map(int,input().split())
dp=[[0 for i in range(50)] for j in range(m+1)]
dp2=[[0 for i in range(50)] 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,50):
      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 (k+1)*(k+1)>m:
        break
      if j+k+1>m:
        break
  for j in range(0,m+1):
    for k in range(0,50):
      dp[j][k]=dp2[j][k]%mod
      dp2[j][k]=0
      if (k+1)*(k+1)>m:
        break
print(dp[m][0])
0