結果

問題 No.2409 Strange Werewolves
ユーザー detteiuudetteiuu
提出日時 2024-12-22 05:22:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 228,672 KB
最終ジャッジ日時 2024-12-22 05:22:44
合計ジャッジ時間 8,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
227,832 KB
testcase_01 AC 832 ms
227,684 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 818 ms
227,424 KB
testcase_07 WA -
testcase_08 AC 756 ms
227,376 KB
testcase_09 WA -
testcase_10 AC 792 ms
228,672 KB
testcase_11 WA -
testcase_12 AC 791 ms
228,112 KB
testcase_13 WA -
testcase_14 AC 745 ms
227,752 KB
testcase_15 WA -
testcase_16 AC 780 ms
228,344 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class CP:
    def __init__(self, N):
        self.fact = [1]
        self.fact_inv = [1]
        for i in range(1, N+1):
            self.fact.append((self.fact[-1]*i)%MOD)
            self.fact_inv.append(pow(self.fact[-1], -1, MOD))
    def C(self, N, K):
        if N >= K:
            return self.fact[N]*self.fact_inv[K]%MOD*self.fact_inv[N-K]%MOD
        else:
            return 0
    def P(self, N, K):
        if N >= K:
            return self.fact[N]*self.fact_inv[N-K]%MOD
        else:
            return 0

X, Y, Z, W = map(int, input().split())

MOD = 998244353

if W != 0:
    X, Y = Y, Z
    Z, W = W, Z

if Y == 0:
    exit(print(1))

P = [1]
for i in range(1, 10**6+1):
    P.append(P[-1]*i%MOD)

diffX = X-Z
cp = CP(10**6)
ans = cp.C(diffX+Y-1, diffX)
ans *= cp.C(X, diffX)
ans %= MOD
ans *= (P[diffX]*P[Y])%MOD
ans %= MOD

print(ans)
0