結果

問題 No.2944 Sigma Partition Problem
ユーザー noriaokinoriaoki
提出日時 2024-10-23 23:08:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 751 ms / 4,000 ms
コード長 383 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 201,976 KB
最終ジャッジ日時 2024-10-23 23:08:23
合計ジャッジ時間 21,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 712 ms
201,760 KB
testcase_01 AC 743 ms
201,900 KB
testcase_02 AC 713 ms
201,836 KB
testcase_03 AC 710 ms
201,716 KB
testcase_04 AC 746 ms
201,776 KB
testcase_05 AC 709 ms
201,644 KB
testcase_06 AC 711 ms
201,792 KB
testcase_07 AC 720 ms
201,800 KB
testcase_08 AC 724 ms
201,904 KB
testcase_09 AC 744 ms
201,824 KB
testcase_10 AC 709 ms
201,716 KB
testcase_11 AC 709 ms
201,840 KB
testcase_12 AC 742 ms
201,924 KB
testcase_13 AC 704 ms
201,528 KB
testcase_14 AC 717 ms
201,792 KB
testcase_15 AC 709 ms
201,976 KB
testcase_16 AC 715 ms
201,632 KB
testcase_17 AC 711 ms
201,604 KB
testcase_18 AC 717 ms
201,592 KB
testcase_19 AC 713 ms
201,724 KB
testcase_20 AC 751 ms
201,760 KB
testcase_21 AC 717 ms
201,648 KB
testcase_22 AC 722 ms
201,572 KB
testcase_23 AC 727 ms
201,636 KB
testcase_24 AC 714 ms
201,672 KB
testcase_25 AC 712 ms
201,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
s = 4005
m = [[0]*s for _ in range(s)]
m[0][0] = 1
for i in range(s):
    acc = m[i][0]
    for j in range(1, s):
        acc += m[i][j]
        acc %= mod
        m[min(s-1, i+j)][j] += acc
        m[min(s-1, i+j)][j] %= mod
        m[i][j] += m[i][j-1]
        m[i][j] %= mod

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