結果

問題 No.794 チーム戦 (2)
ユーザー okok
提出日時 2019-02-23 18:16:11
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 879 bytes
コンパイル時間 904 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 00:05:16
合計ジャッジ時間 3,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 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 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
6,940 KB
testcase_17 AC 40 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 18 ms
6,944 KB
testcase_30 AC 18 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>

using namespace std;

#define int long long
#define rep(i,n) for(int i = 0; i < (n); i++)
#define INF ((long long)1e18)
#define MOD ((int)1e9+7)
#define endl "\n"

#define yn(f) ((f)?"Yes":"No")
#define YN(f) ((f)?"YES":"NO")

#define MAX 210000

int N, K;
int A[MAX], B[MAX];

signed main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout<<fixed<<setprecision(10);
	
	int ans = 1;
	
	cin>>N>>K;
	
	for(int i = 0; i < N; i++){
		cin>>A[i];
	}
	
	sort(A, A+N, greater<int>());
	
	for(int i = 0, j = N-1; i < N/2; i++){
		for(;j > i; j--){
			if(A[i]+A[j] > K) break;
		}
		j = max(i,j);
		// cout<<i<<" "<<j<<" "<<A[i]<<" "<<A[j]<<endl;
		// cout<<"ans = "<<ans<<" "<<j<<" "<<(N-1-j)<<" "<<(N-1-j-i)-i<<endl;
		ans *= (N-1-j)-i;
		
	}

	cout<<ans<<endl;
	
	
	return 0;
}
0