結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー はるお味はるお味
提出日時 2024-06-29 02:33:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 2,951 ms
コンパイル使用メモリ 246,048 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-06-29 02:33:36
合計ジャッジ時間 7,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,676 KB
testcase_01 AC 28 ms
6,944 KB
testcase_02 AC 30 ms
6,940 KB
testcase_03 AC 30 ms
6,944 KB
testcase_04 AC 29 ms
6,944 KB
testcase_05 AC 28 ms
6,940 KB
testcase_06 AC 29 ms
6,940 KB
testcase_07 AC 29 ms
6,940 KB
testcase_08 AC 28 ms
6,944 KB
testcase_09 AC 27 ms
6,944 KB
testcase_10 AC 28 ms
6,944 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<long long> VL;
typedef vector<VL> VVL;
typedef long long LL;
#define all(a) (a).begin(), (a).end()
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define ALL(a)  (a).begin(),(a).end()

#include <atcoder/modint>
using mint = atcoder::modint998244353;


int main() {
  int n; cin>>n;
  int A[n];
  rep(i,n){cin>>A[i];}
  mint ans=A[0]+1;
  mint fac[200001],gf[200001];
  fac[0]=1; gf[0]=1;
  for(int i=1;i<=200000;i++){
    fac[i]=fac[i-1]*i;
    gf[i]=1/fac[i];
  }
  for(int i=1;i<n;i++){
    rep(j,A[i]){
      ans+=fac[i+j]*(gf[i]*gf[j]);
    }
  }
  cout<<ans.val()<<endl;
}
0