結果

問題 No.794 チーム戦 (2)
ユーザー t33ft33f
提出日時 2019-02-22 22:08:40
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 1,500 ms
コード長 642 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 68,708 KB
実行使用メモリ 4,424 KB
最終ジャッジ日時 2023-08-16 19:02:31
合計ジャッジ時間 3,420 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <algorithm>
#include <iostream>
using namespace std;
constexpr int M = 1000000007;
int main() {
    int n, k; cin >> n >> k;
    int a[n];for (int i = 0; i < n; i++) cin >> a[i];
    sort(a, a+n);
    long long ans = 1;
    int i = 0, j = n-1;
    while (i < j) {
        while (i < j && a[i] + a[j] <= k) i++;
        if (i < n - j) { cout << 0 << endl; return 0; }
        ans = ans * (i - (n - j - 1)) % M;
        j--;
        // cerr << i << ' ' << j << ' ' << ans << endl;
    }
    int m = (j + 1 - (n - j - 1)) / 2;
    // cerr << m << endl;
    while (m > 0) { ans = ans * (2 * m - 1) % M; m--; }
    cout << ans << endl;
}
0