結果

問題 No.794 チーム戦 (2)
ユーザー kotatsugamekotatsugame
提出日時 2019-02-22 22:17:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 70,504 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 02:51:54
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,948 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 85 ms
6,940 KB
testcase_17 AC 87 ms
6,940 KB
testcase_18 AC 87 ms
6,940 KB
testcase_19 AC 88 ms
6,940 KB
testcase_20 AC 89 ms
6,940 KB
testcase_21 AC 86 ms
6,940 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 33 ms
6,940 KB
testcase_30 AC 33 ms
6,940 KB
testcase_31 AC 33 ms
6,940 KB
testcase_32 AC 34 ms
6,940 KB
testcase_33 AC 35 ms
6,944 KB
testcase_34 AC 33 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-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=n-1;
	for(int i=n;i-->n/2;)
	{
		if(id>=i)id=i-1;
		while(id>=0&&a[id]+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