結果

問題 No.1761 Sequence Distance
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-10-24 22:56:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 6,040 ms / 8,000 ms
コード長 673 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-11 06:16:03
合計ジャッジ時間 59,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 45 ms
61,056 KB
testcase_02 AC 1,545 ms
77,440 KB
testcase_03 AC 53 ms
61,568 KB
testcase_04 AC 49 ms
61,312 KB
testcase_05 AC 51 ms
62,976 KB
testcase_06 AC 90 ms
71,936 KB
testcase_07 AC 73 ms
72,064 KB
testcase_08 AC 91 ms
72,832 KB
testcase_09 AC 65 ms
67,584 KB
testcase_10 AC 87 ms
71,808 KB
testcase_11 AC 95 ms
71,936 KB
testcase_12 AC 78 ms
73,088 KB
testcase_13 AC 79 ms
71,296 KB
testcase_14 AC 72 ms
70,656 KB
testcase_15 AC 84 ms
72,192 KB
testcase_16 AC 87 ms
73,216 KB
testcase_17 AC 80 ms
71,680 KB
testcase_18 AC 107 ms
72,320 KB
testcase_19 AC 95 ms
72,576 KB
testcase_20 AC 91 ms
71,168 KB
testcase_21 AC 1,408 ms
76,416 KB
testcase_22 AC 171 ms
76,800 KB
testcase_23 AC 4,983 ms
77,056 KB
testcase_24 AC 1,544 ms
77,056 KB
testcase_25 AC 4,165 ms
77,184 KB
testcase_26 AC 4,455 ms
77,440 KB
testcase_27 AC 1,755 ms
76,672 KB
testcase_28 AC 1,301 ms
77,056 KB
testcase_29 AC 3,520 ms
77,440 KB
testcase_30 AC 851 ms
76,744 KB
testcase_31 AC 1,936 ms
77,036 KB
testcase_32 AC 204 ms
76,800 KB
testcase_33 AC 2,689 ms
77,056 KB
testcase_34 AC 74 ms
71,168 KB
testcase_35 AC 348 ms
76,672 KB
testcase_36 AC 3,412 ms
77,056 KB
testcase_37 AC 488 ms
76,692 KB
testcase_38 AC 805 ms
76,672 KB
testcase_39 AC 1,946 ms
77,388 KB
testcase_40 AC 801 ms
77,140 KB
testcase_41 AC 5,340 ms
77,236 KB
testcase_42 AC 6,040 ms
77,424 KB
testcase_43 AC 5,942 ms
77,208 KB
testcase_44 AC 33 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

mod = 998244353
N, M = map(int, input().split())

dp = [[0] * (M + 1) for _ in range(50)]
nx = [[0] * (M + 1) for _ in range(50)]
dp[0][0] = 1

for _ in range(N):
  for i in range(50):
    for j in range(M + 1):
      nx[i][j] = 0
  for i in range(50):
    for j in range(M + 1):
      if dp[i][j] == 0:
        continue
      im1 = abs(i - 1)
      if j + im1 <= M:
        nx[im1][j + im1] += dp[i][j]
      if j + i <= M:
        nx[i][j + i] += dp[i][j] * 2
      if i != 50 - 1 and j + i + 1 <= M:
        nx[i + 1][j + i + 1] += dp[i][j]
  dp, nx = nx, dp
  for i in range(50):
    for j in range(M + 1):
      dp[i][j] %= mod

print(dp[0][M])
0