結果

問題 No.2409 Strange Werewolves
ユーザー ryohei22ryohei22
提出日時 2023-08-11 22:41:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 234,752 KB
最終ジャッジ日時 2024-11-18 17:39:19
合計ジャッジ時間 37,233 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,076 KB
testcase_01 AC 53 ms
72,860 KB
testcase_02 AC 36 ms
59,732 KB
testcase_03 TLE -
testcase_04 AC 72 ms
80,720 KB
testcase_05 AC 74 ms
220,820 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,541 ms
97,664 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 953 ms
234,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353


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

dx = X - Z
dy = Y - W

# dp[i][j]: i回の会議終了時に人がj人追放されているような組み合わせの数(追放された狼の数は i-j)
# 途中で片方が0人になってはいけないことに注意
old = {0: 1}
for i in range(1, dx+dy+1):
    new = dict()
    for j in old:
        if (i == dx + dy or X - (j + 1) != 0) and j + 1 <= dx:
            # 人を追放
            if j + 1 in new:
                new[j+1] += old[j] * (X - j)
            else:
                new[j+1] = old[j] * (X - j)
            new[j+1] %= MOD
        if (i == dx + dy or Y - (i - 1 - j + 1) != 0) and (i - 1 - j) + 1 <= dy:
            # 狼を追放
            if j in new:
                new[j] += old[j] * (Y - (i - 1 - j))
            else:
                new[j] = old[j] * (Y - (i - 1 - j))
            new[j] %= MOD
    old = new
print(sum(old.values()) % MOD)
0