結果

問題 No.794 チーム戦 (2)
ユーザー kotatsugamekotatsugame
提出日時 2019-02-22 22:20:58
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 1,500 ms
コード長 347 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 69,180 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-16 19:30:42
合計ジャッジ時間 3,654 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 90 ms
4,384 KB
testcase_15 AC 90 ms
4,380 KB
testcase_16 AC 89 ms
4,384 KB
testcase_17 AC 90 ms
4,380 KB
testcase_18 AC 89 ms
4,384 KB
testcase_19 AC 89 ms
4,384 KB
testcase_20 AC 90 ms
4,380 KB
testcase_21 AC 89 ms
4,380 KB
testcase_22 AC 54 ms
4,380 KB
testcase_23 AC 49 ms
4,384 KB
testcase_24 AC 39 ms
4,384 KB
testcase_25 AC 33 ms
4,384 KB
testcase_26 AC 36 ms
4,380 KB
testcase_27 AC 35 ms
4,380 KB
testcase_28 AC 35 ms
4,384 KB
testcase_29 AC 35 ms
4,384 KB
testcase_30 AC 34 ms
4,380 KB
testcase_31 AC 35 ms
4,380 KB
testcase_32 AC 34 ms
4,380 KB
testcase_33 AC 35 ms
4,384 KB
testcase_34 AC 35 ms
4,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
long ans=1,mod=1e9+7;
int n,k,a[2<<17];
main()
{
	cin>>n>>k;
	for(int i=0;i<n;i++)cin>>a[i];
	sort(a,a+n);
	int id=-1;
	for(int i=n;i-->n/2;)
	{
		if(id>=i)id=i-1;
		while(id<i-1&&a[id+1]+a[i]<=k)id++;
		if(id+1-(n-i-1)>0)ans=ans*(id+1-(n-i-1))%mod;
		else ans=0;
	}
	cout<<ans<<endl;
}
0