結果

問題 No.1761 Sequence Distance
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-10-24 22:53:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,480 ms / 8,000 ms
コード長 695 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-11 06:10:05
合計ジャッジ時間 50,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 1,436 ms
77,104 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 85 ms
73,600 KB
testcase_07 AC 60 ms
65,792 KB
testcase_08 AC 85 ms
73,728 KB
testcase_09 AC 70 ms
70,656 KB
testcase_10 AC 81 ms
73,344 KB
testcase_11 AC 88 ms
73,728 KB
testcase_12 AC 70 ms
70,016 KB
testcase_13 AC 84 ms
72,576 KB
testcase_14 AC 74 ms
69,120 KB
testcase_15 AC 85 ms
74,000 KB
testcase_16 AC 79 ms
73,216 KB
testcase_17 AC 59 ms
66,048 KB
testcase_18 AC 89 ms
73,728 KB
testcase_19 AC 76 ms
71,424 KB
testcase_20 AC 78 ms
72,320 KB
testcase_21 AC 972 ms
77,044 KB
testcase_22 AC 135 ms
76,720 KB
testcase_23 AC 4,266 ms
76,800 KB
testcase_24 AC 1,314 ms
76,972 KB
testcase_25 AC 3,525 ms
76,964 KB
testcase_26 AC 3,800 ms
77,016 KB
testcase_27 AC 1,218 ms
76,992 KB
testcase_28 AC 1,081 ms
76,736 KB
testcase_29 AC 3,105 ms
77,312 KB
testcase_30 AC 570 ms
76,800 KB
testcase_31 AC 1,681 ms
77,036 KB
testcase_32 AC 169 ms
76,672 KB
testcase_33 AC 2,080 ms
76,928 KB
testcase_34 AC 82 ms
71,680 KB
testcase_35 AC 224 ms
76,700 KB
testcase_36 AC 2,740 ms
77,084 KB
testcase_37 AC 357 ms
76,928 KB
testcase_38 AC 614 ms
77,056 KB
testcase_39 AC 1,528 ms
76,748 KB
testcase_40 AC 516 ms
76,868 KB
testcase_41 AC 4,755 ms
77,312 KB
testcase_42 AC 5,387 ms
77,056 KB
testcase_43 AC 5,480 ms
77,180 KB
testcase_44 AC 43 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

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

dp = [[0] * (M + 1) for _ in range(sq)]
nx = [[0] * (M + 1) for _ in range(sq)]
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