結果

問題 No.2944 Sigma Partition Problem
ユーザー a1048576a1048576
提出日時 2024-10-18 22:01:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 4,000 ms
コード長 630 bytes
コンパイル時間 4,093 ms
コンパイル使用メモリ 234,108 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-10-18 22:44:24
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge7 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
66,048 KB
testcase_01 AC 77 ms
66,048 KB
testcase_02 AC 76 ms
65,920 KB
testcase_03 AC 76 ms
66,048 KB
testcase_04 AC 77 ms
66,048 KB
testcase_05 AC 75 ms
65,920 KB
testcase_06 AC 90 ms
65,920 KB
testcase_07 AC 76 ms
66,048 KB
testcase_08 AC 75 ms
65,920 KB
testcase_09 AC 75 ms
66,048 KB
testcase_10 AC 76 ms
65,920 KB
testcase_11 AC 76 ms
66,048 KB
testcase_12 AC 76 ms
65,920 KB
testcase_13 AC 75 ms
65,920 KB
testcase_14 AC 76 ms
65,920 KB
testcase_15 AC 76 ms
66,048 KB
testcase_16 AC 77 ms
66,048 KB
testcase_17 AC 76 ms
66,048 KB
testcase_18 AC 76 ms
65,920 KB
testcase_19 AC 76 ms
66,048 KB
testcase_20 AC 77 ms
66,048 KB
testcase_21 AC 76 ms
65,920 KB
testcase_22 AC 76 ms
65,920 KB
testcase_23 AC 76 ms
65,920 KB
testcase_24 AC 77 ms
65,920 KB
testcase_25 AC 77 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all> 
using mint = atcoder::modint998244353;
#define int long long
signed main() {
  int Q;
  cin >> Q;
  int m = 4000;
  vector<vector<mint>> dp(m+1,vector<mint>(m+1,0));
  dp[0][0] = 1;
  for(int i = 0; i < m; i++) {
    dp[i+1] = dp[i];
    for(int j = 0; j <= m; j++) {
      if(i+1+j <= m) dp[i+1][j+i+1]+=dp[i+1][j];
    }
  }
  while(Q--) {
    int t,n,k;
    cin >> t >> n >> k;
    if(t == 1) {
      mint ans = dp[k][n];
      cout << ans.val() << endl;
    }
    else {
      mint ans = 0;
      ans = dp[k][n];
      cout << ans.val() << endl;
    }
  }
}
0