結果

問題 No.2409 Strange Werewolves
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-07-09 15:04:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 202,716 KB
実行使用メモリ 8,132 KB
最終ジャッジ日時 2024-07-09 15:04:33
合計ジャッジ時間 4,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
8,004 KB
testcase_01 AC 10 ms
8,008 KB
testcase_02 AC 9 ms
8,004 KB
testcase_03 AC 9 ms
8,004 KB
testcase_04 AC 10 ms
8,004 KB
testcase_05 AC 10 ms
8,000 KB
testcase_06 AC 10 ms
8,000 KB
testcase_07 AC 10 ms
8,004 KB
testcase_08 AC 10 ms
8,004 KB
testcase_09 AC 9 ms
8,084 KB
testcase_10 AC 9 ms
8,004 KB
testcase_11 AC 9 ms
8,008 KB
testcase_12 AC 9 ms
8,008 KB
testcase_13 AC 10 ms
8,132 KB
testcase_14 AC 10 ms
8,000 KB
testcase_15 AC 9 ms
8,128 KB
testcase_16 AC 9 ms
8,084 KB
testcase_17 AC 11 ms
8,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

#include <atcoder/modint>
using mint = atcoder::modint998244353;
mint fact[600005], inv[600005];
void init() {
    fact[0] = 1;
    for (int i = 1; i < 600005; i++) fact[i] = fact[i - 1] * i;
    inv[600004] = fact[600004].inv();
    for (int i = 600003; i >= 0; i--) inv[i] = inv[i + 1] * (i + 1);
}
mint nCr(int n, int r) {
    if (r < 0 || r > n) return 0;
    return fact[n] * inv[r] * inv[n - r];
}

int main() {
    fast_io();
    init();
    int x, y, z, w;
    cin >> x >> y >> z >> w;
    if (w == 0) {
        swap(x, y);
        swap(z, w);
    }
    mint ans = x * nCr(y, w) * fact[y - w + x - 1];
    cout << ans.val() << endl;
}
0