結果
| 問題 | No.2615 ペアの作り方 |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-12-30 02:28:12 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 2,000 ms |
| コード長 | 665 bytes |
| 記録 | |
| コンパイル時間 | 3,168 ms |
| コンパイル使用メモリ | 283,552 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-12-30 02:28:18 |
| 合計ジャッジ時間 | 5,439 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
#include <atcoder/modint>
using mint = atcoder::modint998244353;
inline mint fact(int x) { return x == 0 ? 1 : x * fact(x - 1); }
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int n;
cin >> n;
vector<int> a(n), b(n);
rep(i, n) cin >> a[i];
rep(i, n) cin >> b[i];
sort(a.begin(), a.end());
sort(b.begin(), b.end());
int acnt = 0, bcnt = 0;
rep(i, n) {
if (a[acnt] <= b[bcnt])
++acnt;
else
++bcnt;
}
cout << (fact(acnt) * fact(bcnt)).val() << '\n';
return 0;
}
a01sa01to