結果

問題 No.2807 Have Another Go (Easy)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-20 23:42:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 3,000 ms
コード長 1,094 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 205,756 KB
実行使用メモリ 7,176 KB
最終ジャッジ日時 2024-10-20 23:42:27
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 14 ms
7,032 KB
testcase_02 AC 14 ms
6,820 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 16 ms
6,820 KB
testcase_06 AC 13 ms
6,816 KB
testcase_07 AC 7 ms
6,820 KB
testcase_08 AC 7 ms
6,820 KB
testcase_09 AC 9 ms
6,816 KB
testcase_10 AC 7 ms
6,816 KB
testcase_11 AC 19 ms
7,088 KB
testcase_12 AC 17 ms
7,040 KB
testcase_13 AC 18 ms
6,956 KB
testcase_14 AC 19 ms
7,124 KB
testcase_15 AC 18 ms
6,960 KB
testcase_16 AC 20 ms
7,156 KB
testcase_17 AC 18 ms
6,956 KB
testcase_18 AC 19 ms
7,176 KB
testcase_19 AC 18 ms
7,168 KB
testcase_20 AC 18 ms
7,152 KB
testcase_21 AC 18 ms
7,108 KB
testcase_22 AC 18 ms
7,128 KB
testcase_23 AC 18 ms
7,168 KB
testcase_24 AC 18 ms
7,132 KB
testcase_25 AC 18 ms
6,952 KB
testcase_26 AC 19 ms
7,040 KB
testcase_27 AC 18 ms
7,148 KB
testcase_28 AC 19 ms
7,116 KB
testcase_29 AC 18 ms
7,148 KB
testcase_30 AC 18 ms
7,048 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 4 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 2 ms
6,820 KB
testcase_38 AC 8 ms
6,820 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 7 ms
6,816 KB
testcase_41 AC 9 ms
6,816 KB
testcase_42 AC 8 ms
6,820 KB
testcase_43 AC 6 ms
6,816 KB
testcase_44 AC 6 ms
6,820 KB
testcase_45 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using ll = long long;
using namespace atcoder;
using mint=modint998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int N, M, K, C;
    cin >> N >> M >> K;
    /*
       (Cを通る場合)+(N+Cを通る場合)-(両方通る場合)
       残りがxマスであるとき、
       x-1で1~6
       x-2で2~6
       .
       x-6で6
       を出したらゴール
    */
    vector<mint> dp(N*M);
    dp[0] = 1;
    for (int i=0; i<N*M; i++){
        for (int j=1; j<=6; j++){
            if (i+j<N*M){
                dp[i+j] += dp[i];
            }
        }
    }

    auto f=[&](ll X)->mint{
        mint res=0;
        for (int i=1; i<=6; i++){
            if (X-i>=0) res += dp[X-i]*(7-i);
        }
        return res;
    };

    while(K--){
        cin >> C;
        mint ans=0;
        ans += dp[C] * f(N*2-C);
        ans += dp[C+N] * f(N-C);
        //C進んでからN進む
        ans -= dp[C] * dp[N] * f(N-C);
        cout << ans.val() << endl;
    }

    return 0;
}
0