結果

問題 No.794 チーム戦 (2)
ユーザー yumakmcyumakmc
提出日時 2019-02-22 21:47:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 97 ms / 1,500 ms
コード長 1,161 bytes
コンパイル時間 1,408 ms
コンパイル使用メモリ 164,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 01:18:41
合計ジャッジ時間 4,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"

#pragma warning(disable:4996)
using namespace std;
long long int mod=1e9+7;
pair<long long int, long long int>mul(
	pair<long long int, long long int>&l,
	pair<long long int, long long int>&r) {
	auto p=make_pair(l.first*r.first,l.second*r.first+r.second);
	return make_pair(p.first%mod,p.second%mod);
}


pair<long long int,long long int> solve(pair<long long int,long long int> a, long long int b) {
	pair<long long int,long long int>answer(1,0);
	if(b==0)return answer;
	if (b % 2) {
		answer=a;
	}
	auto x=solve(a,b/2);
	x=mul(x,x);
	answer=mul(answer,x);

	return answer;
}
int main() {
	int N,K;cin>>N>>K;
	vector<int>v(N);
	for(int i=0;i<N;++i)cin>>v[i];
	sort(v.begin(),v.end());
	long long int answer=1;
	int rest=-1;
	for (int i = N - 1; i >= 0; --i) {
		auto it=upper_bound(v.begin(),v.end(),K-v[i]);
		int num=it-v.begin();
		if (num >= i+1) {
			rest=N-2*(N-1-i);
			break;
		}
		num-=(N-1-i);
		if(num<0)num=0;
		answer*=num;
		answer%=static_cast<int>(1e9+7);
	}
	if (rest != -1) {
		rest--;
		while (rest > 0) {
			answer*=rest;
			rest-=2;
			answer%=static_cast<int>(1e9+7);
		}
	}
	cout<<answer<<endl;
   return 0;
}
0