結果

問題 No.2944 Sigma Partition Problem
ユーザー keisuke6keisuke6
提出日時 2024-10-18 21:36:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 4,000 ms
コード長 434 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 206,044 KB
実行使用メモリ 129,152 KB
最終ジャッジ日時 2024-10-18 22:28:33
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
129,024 KB
testcase_01 AC 121 ms
129,152 KB
testcase_02 AC 121 ms
129,024 KB
testcase_03 AC 121 ms
129,152 KB
testcase_04 AC 123 ms
129,024 KB
testcase_05 AC 121 ms
129,024 KB
testcase_06 AC 120 ms
129,024 KB
testcase_07 AC 123 ms
129,024 KB
testcase_08 AC 122 ms
129,024 KB
testcase_09 AC 122 ms
129,024 KB
testcase_10 AC 124 ms
129,024 KB
testcase_11 AC 124 ms
129,024 KB
testcase_12 AC 123 ms
129,024 KB
testcase_13 AC 122 ms
129,024 KB
testcase_14 AC 122 ms
129,024 KB
testcase_15 AC 123 ms
129,024 KB
testcase_16 AC 122 ms
129,024 KB
testcase_17 AC 123 ms
129,024 KB
testcase_18 AC 133 ms
129,024 KB
testcase_19 AC 125 ms
129,024 KB
testcase_20 AC 133 ms
129,024 KB
testcase_21 AC 123 ms
129,024 KB
testcase_22 AC 123 ms
129,152 KB
testcase_23 AC 124 ms
129,152 KB
testcase_24 AC 128 ms
129,024 KB
testcase_25 AC 124 ms
129,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    int N = 4010;
    int mod = 998244353;
    vector<vector<int>> dp(N+1,vector<int>(N+1));
    dp[0][0] = 1;
    for(int i=0;i<N;i++){
    	dp[i+1] = dp[i];
    	for(int k=i+1;k<=N;k++) dp[i+1][k] = (dp[i+1][k]+dp[i+1][k-(i+1)])%mod;
    }
    int Q;
    cin>>Q;
    while(Q--){
    	int a,b,c;
    	cin>>a>>b>>c;
    	cout<<dp[c][b]<<endl;
    }
}
0