結果

問題 No.2944 Sigma Partition Problem
ユーザー noriaokinoriaoki
提出日時 2024-10-22 23:27:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 202,204 KB
最終ジャッジ日時 2024-10-22 23:27:25
合計ジャッジ時間 20,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 680 ms
201,652 KB
testcase_01 AC 706 ms
201,716 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 720 ms
201,952 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
l = 4005
m = [[0]*l for _ in range(l)]
m[0][0] = 1
for i in range(l):
    acc = m[i][0]
    for j in range(1, l):
        acc += m[i][j]
        acc %= mod
        m[min(l-1, i+j)][j] += acc
        m[min(l-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())
    if n < k:
        print(0)
        continue
    else:
        print(m[n][k])
0