結果

問題 No.2409 Strange Werewolves
ユーザー ニックネームニックネーム
提出日時 2023-08-11 21:40:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 57,796 KB
最終ジャッジ日時 2024-11-18 15:39:22
合計ジャッジ時間 5,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 454 ms
57,672 KB
testcase_04 AC 488 ms
57,708 KB
testcase_05 AC 243 ms
34,048 KB
testcase_06 AC 441 ms
57,796 KB
testcase_07 AC 498 ms
57,724 KB
testcase_08 AC 251 ms
36,096 KB
testcase_09 AC 293 ms
38,400 KB
testcase_10 AC 162 ms
23,936 KB
testcase_11 AC 51 ms
13,440 KB
testcase_12 AC 148 ms
24,192 KB
testcase_13 AC 254 ms
35,492 KB
testcase_14 AC 297 ms
40,320 KB
testcase_15 AC 264 ms
38,040 KB
testcase_16 AC 243 ms
33,024 KB
testcase_17 AC 55 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z,w = map(int,input().split())
nmax = x+y; mod = 998244353; fa = [1]*(nmax+1); fi = [1]*(nmax+1)
for i in range(1,nmax): fa[i+1] = fa[i]*(i+1)%mod
fi[nmax] = pow(fa[nmax],mod-2,mod)
def cmb(n,r): return fa[n]*fi[n-r]%mod*fi[r]%mod if 0<=r<=n else 0
for i in range(nmax,0,-1): fi[i-1] = fi[i]*i%mod
if z==0: x,y,z,w = y,x,w,z
print(cmb(x,z)*y*fa[x+y-z-1]%mod)
0