結果

問題 No.2944 Sigma Partition Problem
ユーザー ニックネームニックネーム
提出日時 2024-10-18 23:52:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 582 ms / 4,000 ms
コード長 294 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 184,260 KB
最終ジャッジ日時 2024-10-18 23:52:41
合計ジャッジ時間 15,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
183,980 KB
testcase_01 AC 524 ms
183,988 KB
testcase_02 AC 522 ms
184,132 KB
testcase_03 AC 516 ms
183,948 KB
testcase_04 AC 533 ms
183,932 KB
testcase_05 AC 521 ms
183,960 KB
testcase_06 AC 523 ms
183,996 KB
testcase_07 AC 582 ms
184,104 KB
testcase_08 AC 528 ms
184,116 KB
testcase_09 AC 522 ms
184,044 KB
testcase_10 AC 521 ms
183,940 KB
testcase_11 AC 538 ms
184,164 KB
testcase_12 AC 523 ms
184,104 KB
testcase_13 AC 528 ms
183,872 KB
testcase_14 AC 547 ms
184,048 KB
testcase_15 AC 522 ms
183,928 KB
testcase_16 AC 524 ms
184,260 KB
testcase_17 AC 524 ms
183,892 KB
testcase_18 AC 554 ms
184,060 KB
testcase_19 AC 518 ms
184,052 KB
testcase_20 AC 520 ms
183,932 KB
testcase_21 AC 520 ms
184,256 KB
testcase_22 AC 531 ms
184,176 KB
testcase_23 AC 520 ms
183,972 KB
testcase_24 AC 527 ms
184,144 KB
testcase_25 AC 557 ms
184,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 4000; o = 998244353
a = [[1]*(m+1)]+[[0]*(m+1) for _ in range(m)]
for i in range(1,m+1):
    for j in range(1,i+1): a[i][j] = (a[i][j]+a[i-j][j])%o
    for j in range(m): a[i][j+1] = (a[i][j]+a[i][j+1])%o
for _ in range(int(input())):
    f,n,k = map(int,input().split())
    print(a[n][k])
0