結果

問題 No.2807 Have Another Go (Easy)
ユーザー ja14378ja14378
提出日時 2024-07-12 23:56:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 3,000 ms
コード長 1,006 bytes
コンパイル時間 4,419 ms
コンパイル使用メモリ 264,512 KB
実行使用メモリ 7,344 KB
最終ジャッジ日時 2024-07-12 23:57:32
合計ジャッジ時間 6,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 23 ms
6,996 KB
testcase_02 AC 20 ms
6,944 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 23 ms
6,944 KB
testcase_06 AC 22 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 29 ms
7,136 KB
testcase_12 AC 29 ms
7,164 KB
testcase_13 AC 30 ms
7,208 KB
testcase_14 AC 28 ms
7,152 KB
testcase_15 AC 29 ms
7,124 KB
testcase_16 AC 29 ms
7,100 KB
testcase_17 AC 28 ms
7,248 KB
testcase_18 AC 29 ms
7,144 KB
testcase_19 AC 28 ms
7,344 KB
testcase_20 AC 30 ms
7,132 KB
testcase_21 AC 29 ms
7,168 KB
testcase_22 AC 29 ms
7,208 KB
testcase_23 AC 29 ms
7,104 KB
testcase_24 AC 29 ms
7,176 KB
testcase_25 AC 28 ms
7,132 KB
testcase_26 AC 29 ms
7,280 KB
testcase_27 AC 29 ms
7,200 KB
testcase_28 AC 29 ms
7,172 KB
testcase_29 AC 29 ms
7,104 KB
testcase_30 AC 29 ms
7,112 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 8 ms
6,944 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 7 ms
6,944 KB
testcase_41 AC 9 ms
6,944 KB
testcase_42 AC 9 ms
6,940 KB
testcase_43 AC 6 ms
6,944 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 5 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using ll = long long;
#define MOD 1000000007
#define Mod 998244353
const int MAX = 1000000005;
const long long INF = 1000000000000000005LL;
using namespace std;
using namespace atcoder;

using mint = modint998244353;

int main() {
    ios::sync_with_stdio(0);cin.tie();
    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);
    dp[0] = 1;
    for (int i = 1; i < 2*N; i++) {
        for (int j = 1; j <= 6; j++) {
            if (i - j < 0) break;
            dp[i] += dp[i - j];
        }
    }
    for (int i = 0; i < k; i++) {
        mint ans = 0;
        for (int j = 1; j <= 6; j++) {
            ans += dp[C[i]] * dp[2*N - j - C[i]] * (7 - j);
            if (N - j - C[i] >= 0) ans += dp[N + C[i]] * dp[N - j - C[i]] * (7 - j);
            if (N - j - C[i] >= 0) ans -= dp[C[i]] * dp[N] * dp[N - j - C[i]] * (7 - j);
        }
        cout << ans.val() << endl;
    }
}
0