結果

問題 No.2409 Strange Werewolves
ユーザー SSRSSSRS
提出日時 2023-08-11 21:28:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 852 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 170,164 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-18 15:25:25
合計ジャッジ時間 11,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
10,144 KB
testcase_02 TLE -
testcase_03 AC 12 ms
10,016 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 12 ms
6,816 KB
testcase_07 AC 12 ms
6,816 KB
testcase_08 AC 6 ms
6,816 KB
testcase_09 AC 8 ms
6,816 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 4 ms
6,816 KB
testcase_13 AC 5 ms
6,820 KB
testcase_14 AC 7 ms
6,816 KB
testcase_15 AC 11 ms
6,816 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 3 ms
10,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int X, Y, Z, W;
  cin >> X >> Y >> Z >> W;
  if (W == 0){
    swap(X, Y);
    swap(Z, W);
  }
  if (W == Y){
    long long ans = 1;
    for (int i = X; i > Z; i++){
      ans *= i;
      ans %= MOD;
    }
    cout << ans << endl;
  } else {
    vector<long long> inv(Y + 1);
    inv[1] = 1;
    for (int i = 2; i <= Y; i++){
      inv[i] = MOD - inv[MOD % i] * (MOD / i) % MOD;
    }
    long long ans = X;
    for (int i = 1; i <= Y; i++){
      ans *= i;
      ans %= MOD;
    }
    for (int i = 1; i <= W; i++){
      ans *= inv[i];
      ans %= MOD;
    }
    for (int i = 1; i <= Y - W; i++){
      ans *= inv[i];
      ans %= MOD;
    }
    for (int i = 1; i <= X + Y - W - 1; i++){
      ans *= i;
      ans %= MOD;
    }
    cout << ans << endl;
  }
}
0