結果

問題 No.2944 Sigma Partition Problem
ユーザー 👑 seekworserseekworser
提出日時 2024-09-22 11:13:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 574 bytes
コンパイル時間 820 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 139,076 KB
最終ジャッジ日時 2024-10-08 23:15:46
合計ジャッジ時間 12,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 380 ms
138,260 KB
testcase_01 AC 377 ms
138,072 KB
testcase_02 AC 380 ms
137,868 KB
testcase_03 AC 383 ms
138,092 KB
testcase_04 AC 383 ms
137,904 KB
testcase_05 AC 379 ms
138,188 KB
testcase_06 AC 382 ms
137,972 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 374 ms
137,856 KB
testcase_23 AC 380 ms
137,864 KB
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 3000
mod = 998244353
dp = [[0] * (m+1) for _ in range(m+1)]
dp[1][1] = 1
for i in range(1, m):
    for j in range(1, i+1):
        if i+j <= m:
            dp[i+j][j] += dp[i][j]
            if dp[i+j][j] >= mod: dp[i+j][j] -= mod
        if i+1 <= m:
            dp[i+1][j+1] += dp[i][j]
            if dp[i+1][j+1] >= mod: dp[i+1][j+1] -= mod

for i in range(1, m+1):
    for j in range(1, m):
        dp[i][j+1] += dp[i][j]
        if dp[i][j+1] >= mod: dp[i][j] -= mod

q = int(input())
for _ in range(q):
    _, n, k = map(int, input().split())
    print(dp[n][k])
0