結果

問題 No.2944 Sigma Partition Problem
ユーザー 沙耶花沙耶花
提出日時 2024-10-18 22:05:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 4,000 ms
コード長 614 bytes
コンパイル時間 4,285 ms
コンパイル使用メモリ 260,888 KB
実行使用メモリ 66,296 KB
最終ジャッジ日時 2024-10-18 22:45:45
合計ジャッジ時間 7,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
66,076 KB
testcase_01 AC 84 ms
66,068 KB
testcase_02 AC 85 ms
66,236 KB
testcase_03 AC 85 ms
66,088 KB
testcase_04 AC 84 ms
66,136 KB
testcase_05 AC 86 ms
66,084 KB
testcase_06 AC 85 ms
66,108 KB
testcase_07 AC 84 ms
66,184 KB
testcase_08 AC 84 ms
66,112 KB
testcase_09 AC 85 ms
66,068 KB
testcase_10 AC 83 ms
66,100 KB
testcase_11 AC 84 ms
66,092 KB
testcase_12 AC 84 ms
66,296 KB
testcase_13 AC 84 ms
66,136 KB
testcase_14 AC 84 ms
66,120 KB
testcase_15 AC 84 ms
66,128 KB
testcase_16 AC 85 ms
66,068 KB
testcase_17 AC 84 ms
66,068 KB
testcase_18 AC 84 ms
66,096 KB
testcase_19 AC 86 ms
66,088 KB
testcase_20 AC 84 ms
66,140 KB
testcase_21 AC 84 ms
66,172 KB
testcase_22 AC 83 ms
66,060 KB
testcase_23 AC 84 ms
66,080 KB
testcase_24 AC 86 ms
66,072 KB
testcase_25 AC 85 ms
66,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL
//i length j sum
mint dp[4005][4005];
int main(){
	dp[0][0] = 1;
	rep(i,4005){
		rep(j,4005){
			if(i!=4004&&j!=4004)dp[i+1][j+1] += dp[i][j];
			if(i!=0&&i+j<4005)dp[i][j+i] += dp[i][j];
		}
	}
	rep(i,4004){
		rep(j,4005){
			dp[i+1][j] += dp[i][j];
		}
	}
	int q;
	cin>>q;
	rep(_,q){
		int t,n,k;
		cin>>t>>n>>k;
		cout<<dp[k][n].val()<<endl;
	}
	
	return 0;
}
0