結果

問題 No.2944 Sigma Partition Problem
ユーザー 👑 seekworserseekworser
提出日時 2024-09-22 11:14:04
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 576 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 138,624 KB
最終ジャッジ日時 2024-10-08 23:16:06
合計ジャッジ時間 10,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
137,856 KB
testcase_01 AC 343 ms
137,600 KB
testcase_02 AC 348 ms
137,728 KB
testcase_03 AC 347 ms
137,984 KB
testcase_04 AC 350 ms
137,984 KB
testcase_05 AC 345 ms
137,856 KB
testcase_06 AC 350 ms
137,728 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 348 ms
137,856 KB
testcase_23 AC 349 ms
137,984 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+1] -= mod

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