結果

問題 No.1761 Sequence Distance
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-10-24 22:49:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 7,474 ms / 8,000 ms
コード長 749 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 78,900 KB
最終ジャッジ日時 2024-06-11 06:08:36
合計ジャッジ時間 68,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,176 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 1,915 ms
78,208 KB
testcase_03 AC 46 ms
54,016 KB
testcase_04 AC 47 ms
54,272 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 106 ms
77,268 KB
testcase_07 AC 81 ms
71,552 KB
testcase_08 AC 106 ms
77,056 KB
testcase_09 AC 82 ms
72,064 KB
testcase_10 AC 105 ms
77,184 KB
testcase_11 AC 114 ms
77,312 KB
testcase_12 AC 80 ms
72,704 KB
testcase_13 AC 97 ms
75,268 KB
testcase_14 AC 88 ms
74,752 KB
testcase_15 AC 105 ms
77,076 KB
testcase_16 AC 103 ms
77,360 KB
testcase_17 AC 75 ms
71,168 KB
testcase_18 AC 111 ms
77,184 KB
testcase_19 AC 85 ms
75,264 KB
testcase_20 AC 88 ms
75,264 KB
testcase_21 AC 1,336 ms
77,440 KB
testcase_22 AC 177 ms
77,440 KB
testcase_23 AC 5,954 ms
78,232 KB
testcase_24 AC 1,817 ms
78,112 KB
testcase_25 AC 4,769 ms
78,080 KB
testcase_26 AC 5,087 ms
78,168 KB
testcase_27 AC 1,640 ms
77,568 KB
testcase_28 AC 1,427 ms
77,856 KB
testcase_29 AC 4,139 ms
78,208 KB
testcase_30 AC 782 ms
77,344 KB
testcase_31 AC 2,265 ms
77,772 KB
testcase_32 AC 207 ms
77,292 KB
testcase_33 AC 2,779 ms
77,680 KB
testcase_34 AC 101 ms
77,328 KB
testcase_35 AC 276 ms
77,312 KB
testcase_36 AC 3,632 ms
78,028 KB
testcase_37 AC 456 ms
77,268 KB
testcase_38 AC 855 ms
77,624 KB
testcase_39 AC 2,122 ms
77,788 KB
testcase_40 AC 660 ms
77,412 KB
testcase_41 AC 6,341 ms
78,284 KB
testcase_42 AC 7,305 ms
78,900 KB
testcase_43 AC 7,474 ms
78,896 KB
testcase_44 AC 46 ms
54,272 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):
      if dp[i][j]:
        dp[i][j] %= mod

print(dp[0][M])
0