結果
問題 | No.1761 Sequence Distance |
ユーザー | NyaanNyaan |
提出日時 | 2021-10-24 22:43:45 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 678 bytes |
コンパイル時間 | 242 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 268,924 KB |
最終ジャッジ日時 | 2024-06-11 06:05:46 |
合計ジャッジ時間 | 20,194 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
54,808 KB |
testcase_01 | AC | 37 ms
54,016 KB |
testcase_02 | AC | 4,603 ms
261,780 KB |
testcase_03 | AC | 39 ms
54,272 KB |
testcase_04 | AC | 37 ms
54,144 KB |
testcase_05 | AC | 40 ms
54,272 KB |
testcase_06 | AC | 109 ms
77,216 KB |
testcase_07 | AC | 86 ms
77,120 KB |
testcase_08 | AC | 100 ms
77,172 KB |
testcase_09 | AC | 88 ms
77,440 KB |
testcase_10 | AC | 109 ms
76,868 KB |
testcase_11 | AC | 131 ms
77,568 KB |
testcase_12 | AC | 96 ms
77,132 KB |
testcase_13 | AC | 94 ms
77,312 KB |
testcase_14 | AC | 78 ms
77,312 KB |
testcase_15 | AC | 103 ms
77,056 KB |
testcase_16 | AC | 101 ms
77,056 KB |
testcase_17 | AC | 85 ms
77,184 KB |
testcase_18 | AC | 124 ms
77,316 KB |
testcase_19 | AC | 98 ms
77,080 KB |
testcase_20 | AC | 91 ms
76,924 KB |
testcase_21 | AC | 3,182 ms
108,304 KB |
testcase_22 | AC | 274 ms
78,720 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
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) dp[0][0] = 1 for _ in range(N): nx = deepcopy(init) 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] nx[im1][j + im1] %= mod if j + i <= M: nx[i][j + i] += dp[i][j] * 2 nx[i][j + i] %= mod if i != sq - 1 and j + i + 1 <= M: nx[i + 1][j + i + 1] += dp[i][j] nx[i + 1][j + i + 1] %= mod dp = nx print(dp[0][M])