結果

問題 No.794 チーム戦 (2)
ユーザー veqccveqcc
提出日時 2019-02-22 22:26:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 995 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 97,472 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 03:12:07
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 88 ms
6,940 KB
testcase_15 AC 90 ms
6,940 KB
testcase_16 AC 91 ms
6,940 KB
testcase_17 AC 91 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 49 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
6,940 KB
testcase_27 AC 34 ms
6,940 KB
testcase_28 AC 34 ms
6,940 KB
testcase_29 AC 33 ms
6,940 KB
testcase_30 AC 27 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
typedef unsigned int uint;
using namespace std;

const ll MOD = 1000000007LL;

int main() {
    int n;
    ll k;
    cin >> n >> k;

    vector <ll> a(n);
    ll mx = 0LL;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        mx = max(mx, a[i]);
    }

    if (mx >= k) {
        cout << 0 << "\n";
        return 0;
    }

    sort(a.begin(), a.end());

    ll ans = 1LL;
    int i;
    for (i = 0; i < n/2; i++) {
        if (a[n-i-1] * 2 <= k) break;
        int idx = lower_bound(a.begin(), a.end(), k - a[n-i-1]+1) - a.begin();
        ans = ans * (ll)(idx - i) % MOD;
    }

    int remain = n - i * 2;
    while (remain) {
        ans = ans * (remain * (remain - 1) / 2 / (remain / 2)) % MOD;
        remain -= 2;
    }

    cout << ans << "\n";
    return 0;
}
0