結果

問題 No.1761 Sequence Distance
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-10-24 22:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 7,215 ms / 8,000 ms
コード長 728 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2025-01-03 13:24:15
合計ジャッジ時間 66,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,760 KB
testcase_01 AC 52 ms
53,760 KB
testcase_02 AC 1,798 ms
78,348 KB
testcase_03 AC 51 ms
53,888 KB
testcase_04 AC 48 ms
53,888 KB
testcase_05 AC 50 ms
54,016 KB
testcase_06 AC 111 ms
75,264 KB
testcase_07 AC 89 ms
70,784 KB
testcase_08 AC 111 ms
75,776 KB
testcase_09 AC 91 ms
71,552 KB
testcase_10 AC 107 ms
75,136 KB
testcase_11 AC 125 ms
77,312 KB
testcase_12 AC 91 ms
72,064 KB
testcase_13 AC 103 ms
74,624 KB
testcase_14 AC 99 ms
73,856 KB
testcase_15 AC 108 ms
75,648 KB
testcase_16 AC 109 ms
75,776 KB
testcase_17 AC 86 ms
70,400 KB
testcase_18 AC 119 ms
75,904 KB
testcase_19 AC 102 ms
73,984 KB
testcase_20 AC 101 ms
74,624 KB
testcase_21 AC 1,273 ms
77,696 KB
testcase_22 AC 180 ms
77,440 KB
testcase_23 AC 5,617 ms
78,208 KB
testcase_24 AC 1,753 ms
78,208 KB
testcase_25 AC 4,536 ms
78,208 KB
testcase_26 AC 4,966 ms
78,080 KB
testcase_27 AC 1,585 ms
77,440 KB
testcase_28 AC 1,405 ms
78,080 KB
testcase_29 AC 4,049 ms
78,208 KB
testcase_30 AC 733 ms
77,440 KB
testcase_31 AC 2,224 ms
78,080 KB
testcase_32 AC 212 ms
77,568 KB
testcase_33 AC 2,692 ms
77,824 KB
testcase_34 AC 119 ms
77,440 KB
testcase_35 AC 290 ms
77,440 KB
testcase_36 AC 3,596 ms
78,080 KB
testcase_37 AC 463 ms
77,440 KB
testcase_38 AC 806 ms
77,696 KB
testcase_39 AC 1,994 ms
77,696 KB
testcase_40 AC 659 ms
77,440 KB
testcase_41 AC 6,200 ms
78,208 KB
testcase_42 AC 7,084 ms
78,592 KB
testcase_43 AC 7,215 ms
78,720 KB
testcase_44 AC 48 ms
53,760 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