結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー makichanmakichan
提出日時 2024-06-26 03:28:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 6,180 ms
コンパイル使用メモリ 309,800 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 03:28:54
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
6,816 KB
testcase_01 AC 31 ms
6,812 KB
testcase_02 AC 31 ms
6,944 KB
testcase_03 AC 31 ms
6,944 KB
testcase_04 AC 31 ms
6,940 KB
testcase_05 AC 31 ms
6,940 KB
testcase_06 AC 31 ms
6,940 KB
testcase_07 AC 31 ms
6,944 KB
testcase_08 AC 31 ms
6,940 KB
testcase_09 AC 31 ms
6,944 KB
testcase_10 AC 31 ms
6,940 KB
testcase_11 AC 31 ms
6,940 KB
testcase_12 AC 47 ms
6,944 KB
testcase_13 AC 40 ms
6,944 KB
testcase_14 AC 45 ms
6,940 KB
testcase_15 AC 36 ms
6,944 KB
testcase_16 AC 47 ms
6,940 KB
testcase_17 AC 52 ms
6,940 KB
testcase_18 AC 35 ms
6,940 KB
testcase_19 AC 34 ms
6,944 KB
testcase_20 AC 38 ms
6,940 KB
testcase_21 AC 31 ms
6,944 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 59 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)


vector<mint> factorial(200005,1),invfactorial(200005,1);
mint combo(int n,int r){
    if(n>=r && r>=0)return factorial[n]*invfactorial[n-r]*invfactorial[r];
    return 0;
}
int main(){
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,1,200005)factorial[i]=factorial[i-1]*i,invfactorial[i]=factorial[i].inv();
    rep(i,0,n)cin >> a[n-1-i];
    mint ans=0;
    int k=1;
    rep(i,0,n){
        while(k<=a[i]){
            ans+=combo(n-1-i+k-1,k-1);
            k++;
        }
        ans+=combo(n-1-i+a[i]-1,a[i]-1);
    }
    cout << ans.val();
}
0