結果

問題 No.2615 ペアの作り方
ユーザー 鴨志田卓鴨志田卓
提出日時 2024-02-02 00:09:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 208,940 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-28 10:33:44
合計ジャッジ時間 3,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 2 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 42 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 41 ms
5,376 KB
testcase_19 AC 42 ms
5,376 KB
testcase_20 AC 41 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void fileIO(string s) {
    freopen((s + ".in").c_str(), "r", stdin);
    freopen((s + ".out").c_str(), "w", stdout);
}

const int N = 2e5 + 10;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;
    vector<int> a(n), b(n), c;
    for(int i = 0; i < n; i ++)
        cin >> a[i];
    for(int i = 0; i < n; i ++)
        cin >> b[i];
    c = a;
    c.insert(c.end(), b.begin(), b.end());
    sort(c.begin(), c.end());
    int ans = 1, cnt = 0;
    for(int i = 0; i < n; i ++) {
        if(a[i] < c[n]) cnt ++;
    }
    for(int i = 1; i <= cnt; i ++)
        ans = (long long)ans * i % 998244353;
    cnt = n - cnt;
    for(int i = 1; i <= cnt; i ++)
        ans = (long long)ans * i % 998244353;
    cout << ans;
    return 0;
}
0