結果

問題 No.2807 Have Another Go (Easy)
ユーザー otoshigootoshigo
提出日時 2024-07-12 22:25:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 3,000 ms
コード長 1,449 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 208,256 KB
実行使用メモリ 9,180 KB
最終ジャッジ日時 2024-07-12 22:25:48
合計ジャッジ時間 4,400 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 41 ms
8,832 KB
testcase_02 AC 29 ms
6,784 KB
testcase_03 AC 24 ms
6,144 KB
testcase_04 AC 18 ms
5,760 KB
testcase_05 AC 34 ms
7,552 KB
testcase_06 AC 32 ms
7,424 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 18 ms
5,376 KB
testcase_10 AC 21 ms
6,400 KB
testcase_11 AC 44 ms
9,080 KB
testcase_12 AC 45 ms
8,960 KB
testcase_13 AC 42 ms
9,080 KB
testcase_14 AC 45 ms
9,060 KB
testcase_15 AC 43 ms
9,088 KB
testcase_16 AC 42 ms
9,088 KB
testcase_17 AC 44 ms
9,088 KB
testcase_18 AC 43 ms
9,088 KB
testcase_19 AC 42 ms
9,088 KB
testcase_20 AC 44 ms
9,088 KB
testcase_21 AC 43 ms
9,064 KB
testcase_22 AC 42 ms
9,088 KB
testcase_23 AC 41 ms
9,088 KB
testcase_24 AC 42 ms
9,072 KB
testcase_25 AC 44 ms
9,068 KB
testcase_26 AC 45 ms
9,180 KB
testcase_27 AC 43 ms
9,088 KB
testcase_28 AC 44 ms
9,088 KB
testcase_29 AC 43 ms
9,068 KB
testcase_30 AC 47 ms
9,088 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 5 ms
5,376 KB
testcase_42 AC 5 ms
5,376 KB
testcase_43 AC 4 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using ll=long long;
using mint=atcoder::modint998244353;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M,K;
    cin>>N>>M>>K;
    vector<int>C(K);
    for(int i=0;i<K;i++)cin>>C[i];
    vector<mint>dp(2*N+6);
    dp[0]=1;
    for(int i=1;i<=2*N+5;i++){
        for(int j=1;j<=6;j++){
            if(0<=i-j&&i-j<2*N)dp[i]+=dp[i-j];
        }
    }
    vector<mint>pd(N+6);
    for(int i=0;i<6;i++)pd[N+i]=1;
    for(int i=N-1;i>=0;i--){
        for(int j=1;j<=6;j++)pd[i]+=pd[i+j];
    }
    mint al=0;
    for(int i=0;i<6;i++)al+=dp[2*N+i];
    for(int i=0;i<K;i++){
        int c=C[i];
        mint ans=0;
        for(int j=1;j<=5;j++){
            for(int k=j+1;k<=6;k++){
                if(c-j>=0){
                    for(int l=1;l<=5;l++){
                        for(int m=l+1;m<=6;m++){
                            if(c-j+k<=N+c-l){
                                ans+=dp[c-j]*dp[(N+c-l)-(c-j+k)]*pd[c-l+m];
                            }
                        }
                    }
                }
            }
        }
        ans=al-ans;
        cout<<ans.val()<<"\n";
    }
}
0