結果

問題 No.2369 Some Products
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-12-28 20:59:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 465 ms / 2,500 ms
コード長 755 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 200,436 KB
実行使用メモリ 199,168 KB
最終ジャッジ日時 2024-12-28 20:59:37
合計ジャッジ時間 6,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 456 ms
199,168 KB
testcase_03 AC 465 ms
199,168 KB
testcase_04 AC 458 ms
199,168 KB
testcase_05 AC 33 ms
25,600 KB
testcase_06 AC 336 ms
199,168 KB
testcase_07 AC 33 ms
27,520 KB
testcase_08 AC 75 ms
55,680 KB
testcase_09 AC 25 ms
20,992 KB
testcase_10 AC 144 ms
95,232 KB
testcase_11 AC 267 ms
173,440 KB
testcase_12 AC 16 ms
16,000 KB
testcase_13 AC 182 ms
114,432 KB
testcase_14 AC 213 ms
132,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using LL = long long;

const int N = 5e3 + 7;
const int MOD = 998244353;

int a[N], f[N][N], g[N][N], n, m;

int main() {

  scanf("%d", &n);
  for(int i = 1; i <= n; ++i)
    scanf("%d", &a[i]);

  f[0][0] = g[0][0] = 1;
  for(int i = 1; i <= n; ++i) {
    f[i][0] = g[i][0] = 1;
    for(int j = n; j >= 1; --j)
      f[i][j] = (f[i - 1][j] + 1LL * a[i] * f[i - 1][j - 1]) % MOD;
    for(int j = 0; j < n; ++j)
      g[i][j + 1] = (g[i - 1][j + 1] - 1LL * a[i] * g[i][j]) % MOD;
  }

  scanf("%d", &m);
  while(m--) {
    int ans = 0, l, r, k;
    scanf("%d%d%d", &l, &r, &k);
    for(int i = 0; i <= k; ++i)
      ans = (ans + 1LL * f[r][i] * g[l - 1][k - i]) % MOD;
    printf("%d\n", (ans + MOD) % MOD);
  }
  
  return 0;
}
0