結果

問題 No.794 チーム戦 (2)
ユーザー leaf_1415leaf_1415
提出日時 2019-02-22 21:47:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 101 ms / 1,500 ms
コード長 589 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 60,460 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 07:08:17
合計ジャッジ時間 3,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 98 ms
6,820 KB
testcase_15 AC 101 ms
6,820 KB
testcase_16 AC 101 ms
6,820 KB
testcase_17 AC 98 ms
6,816 KB
testcase_18 AC 96 ms
6,816 KB
testcase_19 AC 98 ms
6,820 KB
testcase_20 AC 96 ms
6,816 KB
testcase_21 AC 97 ms
6,820 KB
testcase_22 AC 59 ms
6,820 KB
testcase_23 AC 55 ms
6,816 KB
testcase_24 AC 42 ms
6,816 KB
testcase_25 AC 35 ms
6,816 KB
testcase_26 AC 40 ms
6,816 KB
testcase_27 AC 39 ms
6,816 KB
testcase_28 AC 39 ms
6,816 KB
testcase_29 AC 38 ms
6,816 KB
testcase_30 AC 38 ms
6,820 KB
testcase_31 AC 38 ms
6,816 KB
testcase_32 AC 38 ms
6,820 KB
testcase_33 AC 39 ms
6,816 KB
testcase_34 AC 39 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:32:24: warning: ‘rem’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   32 |         for(int i = rem-1; i > 0; i-=2) ans *= i, ans %= mod;
      |                     ~~~^~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#define llint long long
#define mod 1000000007

using namespace std;

llint n, k;
llint a[200005];

int main(void)
{
	cin >> n >> k;
	for(int i = 1; i <= n; i++) cin >> a[i];
	sort(a+1, a+n+1);
	
	llint ans = 1, rem;
	for(int i = n; i >= 1; i--){
		if(a[i] <= k/2){
			rem = n - 2*(n-i);
			break;
		}
		int cnt = upper_bound(a+1, a+n+1, k-a[i]) - (a+1);
		cnt -= (n-i);
		if(cnt <= 0){
			cout << 0 << endl;
			return 0;
		}
		ans *= cnt, ans %= mod;
	}
	
	for(int i = rem-1; i > 0; i-=2) ans *= i, ans %= mod;
	cout << ans << endl;
	
	return 0;
}
0