結果

問題 No.794 チーム戦 (2)
ユーザー treeonetreeone
提出日時 2018-10-24 16:52:55
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 1,500 ms
コード長 653 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 170,380 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-12 06:54:04
合計ジャッジ時間 5,369 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using int64 = long long;
typedef pair<int, int> P;
const int mod = 1e9 + 7;

int main(){
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    sort(a.begin(), a.end());
    int64 ans = 1, l = 0, cnt = 0;
    for(int r = n - 1; r >= n / 2; r--){
        while(l <= r && a[l] + a[r] <= k){
            // cout << " " << l << " " << r << " " << a[l] + a[r] << endl;
            l++; cnt++;
        }
        if(r < l) cnt--;
        // cout << r << ' ' << l << ' ' << cnt << endl;
        ans = (ans * cnt) % mod;
        cnt--;
    }
    cout << ans << endl;
}
0