結果

問題 No.2409 Strange Werewolves
ユーザー Akijin_007Akijin_007
提出日時 2023-08-11 21:37:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 570 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-11-18 15:35:24
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
64,924 KB
testcase_01 AC 305 ms
64,828 KB
testcase_02 AC 309 ms
65,440 KB
testcase_03 RE -
testcase_04 AC 302 ms
66,416 KB
testcase_05 AC 298 ms
65,948 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 296 ms
65,240 KB
testcase_09 AC 295 ms
65,048 KB
testcase_10 AC 296 ms
65,212 KB
testcase_11 AC 296 ms
65,384 KB
testcase_12 AC 296 ms
66,376 KB
testcase_13 AC 298 ms
65,716 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 297 ms
64,920 KB
testcase_17 AC 303 ms
66,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

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

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

m = 3 * 10 ** 5 + 10

fac = [1] * (m + 1)
facinv = [1] * (m + 1)
for i in range(1, m+1):
    fac[i] = (fac[i-1] * i) % mod
    facinv[i] = (facinv[i-1] * pow(i, mod-2, mod)) % mod

def nCk(n, k):
    return (fac[n] * facinv[k] * facinv[n-k]) % mod

u = X - Z
v = Y - W

ans = nCk((u+v-1), u)
# print(u, v, ans)
ans = (ans * fac[X] * facinv[Z]) % mod
ans = (ans * fac[Y]) % mod


print(ans)





0