結果

問題 No.794 チーム戦 (2)
ユーザー sinsincoscossinsincoscos
提出日時 2019-02-25 17:53:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 914 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 70,272 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-12-26 18:09:22
合計ジャッジ時間 7,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 297 ms
8,192 KB
testcase_15 AC 296 ms
8,064 KB
testcase_16 AC 301 ms
8,192 KB
testcase_17 AC 294 ms
8,192 KB
testcase_18 AC 298 ms
8,192 KB
testcase_19 AC 307 ms
8,192 KB
testcase_20 AC 297 ms
8,192 KB
testcase_21 AC 298 ms
8,192 KB
testcase_22 AC 182 ms
6,272 KB
testcase_23 AC 163 ms
6,016 KB
testcase_24 AC 129 ms
5,504 KB
testcase_25 AC 106 ms
5,248 KB
testcase_26 AC 117 ms
5,376 KB
testcase_27 AC 228 ms
8,192 KB
testcase_28 AC 223 ms
8,192 KB
testcase_29 AC 232 ms
8,192 KB
testcase_30 RE -
testcase_31 AC 227 ms
8,192 KB
testcase_32 AC 232 ms
8,064 KB
testcase_33 AC 230 ms
8,064 KB
testcase_34 AC 242 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;

ll N,K,A[200010] = {},inf = 1e9+7;

ll func[200010] = {0};
ll inv[200010] = {0};

ll mult(ll n, ll m){
	if(m==1) return n%inf;
	else if(m%2==0){
		ll t = mult(n,m/2);
		return (t*t)%inf;
	}else{
		ll t = mult(n,m-1);
		return (t*n)%inf;
	}
}

void factorial(ll N){
	for(ll i=0;i<=N;i++){
		if(i==0){
			func[i] = 1;
			inv[i] = 1;
		}
		else{
			func[i] = (i*func[i-1])%inf;
			inv[i] = mult(func[i],inf-2);
		}
	}
}


int main(){
	cin >> N >> K;
	factorial(N);
	for(int i=1;i<=N;i++){
		cin >> A[i];
	}
	sort(A+1,A+N+1,greater<ll>());
	ll ans = 1;
	ll r = N+1;
	for(ll i=1;i<=N;i++){
		while(A[i]+A[r-1]<=K && i<r) r--;
		if(i==r){
			ll num = N-2*(i-1);
			(ans *= inv[num/2])%=inf;
			while(num>0){
				(ans *= (num*(num-1)/2)%inf)%=inf;
				num -= 2;
			}
			break;
		}
		(ans *= N-r+1-(i-1))%=inf;
	}
	cout << ans << endl;
}
0