結果

問題 No.2944 Sigma Partition Problem
ユーザー 👑 p-adicp-adic
提出日時 2024-10-19 16:15:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,728 ms / 4,000 ms
コード長 224 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 432,968 KB
最終ジャッジ日時 2024-10-19 16:16:17
合計ジャッジ時間 47,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,706 ms
432,760 KB
testcase_01 AC 1,654 ms
432,528 KB
testcase_02 AC 1,682 ms
432,556 KB
testcase_03 AC 1,684 ms
432,968 KB
testcase_04 AC 1,699 ms
432,512 KB
testcase_05 AC 1,712 ms
432,440 KB
testcase_06 AC 1,669 ms
432,416 KB
testcase_07 AC 1,668 ms
432,488 KB
testcase_08 AC 1,657 ms
432,464 KB
testcase_09 AC 1,712 ms
432,404 KB
testcase_10 AC 1,673 ms
432,644 KB
testcase_11 AC 1,680 ms
432,444 KB
testcase_12 AC 1,673 ms
432,716 KB
testcase_13 AC 1,694 ms
432,672 KB
testcase_14 AC 1,690 ms
432,652 KB
testcase_15 AC 1,686 ms
432,360 KB
testcase_16 AC 1,694 ms
432,552 KB
testcase_17 AC 1,699 ms
432,312 KB
testcase_18 AC 1,687 ms
432,636 KB
testcase_19 AC 1,710 ms
432,436 KB
testcase_20 AC 1,728 ms
432,408 KB
testcase_21 AC 1,691 ms
432,448 KB
testcase_22 AC 1,692 ms
432,448 KB
testcase_23 AC 1,707 ms
432,660 KB
testcase_24 AC 1,713 ms
432,272 KB
testcase_25 AC 1,710 ms
432,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
X=R(4001)
D=[[i==j<1for j in X]for i in X]
for i in X:
	for j in X:D[i][j]=((D[i][j-1]if j else 0)+(0if i<j else D[i-j][j]))%998244353
J=lambda:map(int,input().split())
Q,*_=J()
for q in R(Q):t,n,k=J();print(D[n][k])
0