結果

問題 No.1761 Sequence Distance
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-10-24 22:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,685 ms / 8,000 ms
コード長 728 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-11 06:11:34
合計ジャッジ時間 52,147 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 1,547 ms
77,952 KB
testcase_03 AC 40 ms
54,016 KB
testcase_04 AC 39 ms
54,144 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 86 ms
75,136 KB
testcase_07 AC 68 ms
70,528 KB
testcase_08 AC 85 ms
75,776 KB
testcase_09 AC 69 ms
71,552 KB
testcase_10 AC 85 ms
75,008 KB
testcase_11 AC 96 ms
77,056 KB
testcase_12 AC 72 ms
71,808 KB
testcase_13 AC 80 ms
74,624 KB
testcase_14 AC 77 ms
73,600 KB
testcase_15 AC 86 ms
75,392 KB
testcase_16 AC 88 ms
75,648 KB
testcase_17 AC 71 ms
70,144 KB
testcase_18 AC 94 ms
75,648 KB
testcase_19 AC 78 ms
74,112 KB
testcase_20 AC 79 ms
74,752 KB
testcase_21 AC 1,012 ms
77,312 KB
testcase_22 AC 139 ms
77,184 KB
testcase_23 AC 4,509 ms
77,952 KB
testcase_24 AC 1,375 ms
77,824 KB
testcase_25 AC 3,634 ms
77,824 KB
testcase_26 AC 3,953 ms
78,208 KB
testcase_27 AC 1,279 ms
77,440 KB
testcase_28 AC 1,113 ms
77,696 KB
testcase_29 AC 3,243 ms
78,080 KB
testcase_30 AC 613 ms
77,312 KB
testcase_31 AC 1,771 ms
78,080 KB
testcase_32 AC 170 ms
77,184 KB
testcase_33 AC 2,179 ms
77,824 KB
testcase_34 AC 93 ms
77,312 KB
testcase_35 AC 237 ms
77,184 KB
testcase_36 AC 2,858 ms
77,952 KB
testcase_37 AC 371 ms
77,312 KB
testcase_38 AC 643 ms
77,568 KB
testcase_39 AC 1,601 ms
77,696 KB
testcase_40 AC 533 ms
77,184 KB
testcase_41 AC 5,023 ms
78,336 KB
testcase_42 AC 5,665 ms
78,848 KB
testcase_43 AC 5,685 ms
78,720 KB
testcase_44 AC 45 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
from copy import deepcopy

mod = 998244353
N, M = map(int, input().split())
sq = int(sqrt(2 * M) + 3)

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

for _ in range(N):
  for i in range(sq):
    for j in range(M + 1):
      nx[i][j] = 0
  for i in range(sq):
    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 != sq - 1 and j + i + 1 <= M:
        nx[i + 1][j + i + 1] += dp[i][j]
  dp, nx = nx, dp

  for i in range(sq):
    for j in range(M + 1):
      dp[i][j] %= mod

print(dp[0][M])
0