結果

問題 No.2409 Strange Werewolves
ユーザー sotanishysotanishy
提出日時 2023-08-11 22:13:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 69,196 KB
最終ジャッジ日時 2024-11-18 16:39:21
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,500 KB
testcase_01 AC 43 ms
59,648 KB
testcase_02 AC 39 ms
52,612 KB
testcase_03 AC 57 ms
68,112 KB
testcase_04 AC 56 ms
67,608 KB
testcase_05 AC 52 ms
63,608 KB
testcase_06 AC 56 ms
69,196 KB
testcase_07 AC 57 ms
67,504 KB
testcase_08 AC 52 ms
64,444 KB
testcase_09 AC 53 ms
64,376 KB
testcase_10 AC 48 ms
61,804 KB
testcase_11 AC 45 ms
59,684 KB
testcase_12 AC 47 ms
61,996 KB
testcase_13 AC 51 ms
63,944 KB
testcase_14 AC 52 ms
65,840 KB
testcase_15 AC 52 ms
64,032 KB
testcase_16 AC 51 ms
62,748 KB
testcase_17 AC 44 ms
59,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def comb_preprocess(n):
    fact = [1] * (n+1)
    fact_inv = [1] * (n+1)
    for i in range(1, n+1):
        fact[i] = i * fact[i-1] % mod
    fact_inv[n] = pow(fact[n], mod-2, mod)
    for i in range(1, n+1)[::-1]:
        fact_inv[i-1] = i * fact_inv[i] % mod

    def comb(n, k):
        if k < 0 or n < k:
            return 0
        return fact[n] * fact_inv[k] % mod * fact_inv[n-k] % mod

    return fact, fact_inv, comb


mod = 998244353
X, Y, Z, W = map(int, input().split())
human = X-Z
wolf = Y-W
fact, fact_inv, comb = comb_preprocess(X+Y)
ans = comb(X, human) * comb(Y, wolf) * (human if Z ==
                                        0 else wolf) * fact[human+wolf-1] % mod
print(ans)
0