結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー Naoto FujiwaraNaoto Fujiwara
提出日時 2023-05-31 14:33:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 862 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 87,580 KB
実行使用メモリ 285,056 KB
最終ジャッジ日時 2024-06-08 21:04:43
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 112 ms
105,088 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 MLE -
testcase_11 AC 62 ms
60,288 KB
testcase_12 AC 50 ms
45,952 KB
testcase_13 AC 66 ms
62,080 KB
testcase_14 AC 72 ms
65,408 KB
testcase_15 MLE -
testcase_16 AC 30 ms
27,648 KB
testcase_17 AC 34 ms
32,128 KB
testcase_18 MLE -
testcase_19 AC 61 ms
58,112 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 MLE -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 MLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=998244353;

int main(){
    int N,Q;
    cin>>N>>Q;
    vector<ll> A(N),B(Q);
    for(int i=0;i<N;i++){
        cin>>A[i];
    }
    for(int i=0;i<Q;i++){
        cin>>B[i];
    }

    vector<vector<ll>> dp(N+1,vector<ll>(N+2,0));

    dp[0][0]=1;//0個の箱から0個の1の玉
    for(int i=0;i<N;i++){
        for(int j=0;j<=i;j++){
            dp[i+1][j+1]+=dp[i][j];
            dp[i+1][j+1]%=MOD;

            dp[i+1][j]+=dp[i][j]*(A[i]-1)%MOD;
            dp[i+1][j]%=MOD;
        }
    }

    for(int q=0;q<Q;q++){
        cout<<dp[N][B[q]]<<endl;
    }
    

}
0