結果

問題 No.2409 Strange Werewolves
ユーザー irohasu19_irohasu19_
提出日時 2023-08-14 02:19:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 170 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,756 KB
最終ジャッジ日時 2024-11-21 20:16:03
合計ジャッジ時間 21,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 30 ms
27,756 KB
testcase_02 AC 31 ms
16,128 KB
testcase_03 TLE -
testcase_04 AC 1,174 ms
19,444 KB
testcase_05 AC 1,240 ms
14,068 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,461 ms
14,156 KB
testcase_09 AC 1,143 ms
13,432 KB
testcase_10 AC 459 ms
12,524 KB
testcase_11 AC 39 ms
10,752 KB
testcase_12 AC 465 ms
12,572 KB
testcase_13 AC 970 ms
13,392 KB
testcase_14 AC 1,770 ms
14,428 KB
testcase_15 AC 1,582 ms
14,464 KB
testcase_16 AC 827 ms
13,092 KB
testcase_17 AC 37 ms
17,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
x, y, z, w = map(int, input().split())

if(z==0):
  x, y, z, w = y, x, w, z

ans = y * math.factorial(x-z+y-w-1) * math.comb(x, z)
ans %= 998244353
print(ans)
0