結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 479 ms
57,660 KB
testcase_04 AC 473 ms
57,704 KB
testcase_05 AC 273 ms
34,176 KB
testcase_06 AC 484 ms
57,664 KB
testcase_07 AC 484 ms
57,768 KB
testcase_08 AC 272 ms
36,016 KB
testcase_09 AC 293 ms
38,440 KB
testcase_10 AC 154 ms
23,936 KB
testcase_11 AC 55 ms
13,440 KB
testcase_12 AC 156 ms
24,192 KB
testcase_13 AC 270 ms
35,552 KB
testcase_14 AC 310 ms
40,228 KB
testcase_15 AC 281 ms
37,864 KB
testcase_16 AC 240 ms
33,024 KB
testcase_17 AC 59 ms
13,696 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)
for i in range(nmax,0,-1): fi[i-1] = fi[i]*i%mod
def cmb(n,r): return fa[n]*fi[n-r]%mod*fi[r]%mod if 0<=r<=n else 0
if z==0: x,y,z,w = y,x,w,z
print(cmb(x,z)*y*fa[x+y-z-1]%mod)
0