結果

問題 No.2615 ペアの作り方
ユーザー tobbietobbie
提出日時 2024-05-06 23:15:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 177,384 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 23:15:55
合計ジャッジ時間 4,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 102 ms
5,376 KB
testcase_16 AC 94 ms
5,376 KB
testcase_17 AC 93 ms
5,376 KB
testcase_18 AC 95 ms
5,376 KB
testcase_19 AC 92 ms
5,376 KB
testcase_20 AC 93 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define MOD 998244353
using ll = long long int;

int factorial (int x) {
  int ret = 1;
  while (x > 1) {
    ret = ((ll)ret * (ll)x) % MOD;
    x--;
  }
  return ret;
}

int main() {
  int N;
  cin >> N;
  vector<int> X(N), Y(N);
  rep(i, N) cin >> X[i];
  rep(i, N) cin >> Y[i];
  sort(X.begin(), X.end());
  sort(Y.rbegin(), Y.rend());
  int mid = 0;
  int xn, yn;
  if (X[0] > Y[0] && X[N-1] < Y[N-1]) {
    xn = N; yn = N;
  } else {
    rep(i, N)
      if (X[i] >= Y[i]) {
	mid = i;
	break;
      }
    xn = mid; yn = N - mid;
  }
  
  int ans = ((ll)factorial(xn) * (ll)factorial(yn)) % MOD;
  cout << ans << endl;
  return 0;
}
0