結果

問題 No.794 チーム戦 (2)
ユーザー tentententen
提出日時 2020-09-02 23:00:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 927 ms / 1,500 ms
コード長 929 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 65,240 KB
最終ジャッジ日時 2024-11-22 00:18:17
合計ジャッジ時間 22,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
50,112 KB
testcase_01 AC 125 ms
50,092 KB
testcase_02 AC 116 ms
48,668 KB
testcase_03 AC 128 ms
49,936 KB
testcase_04 AC 127 ms
52,140 KB
testcase_05 AC 124 ms
50,044 KB
testcase_06 AC 124 ms
49,856 KB
testcase_07 AC 130 ms
49,820 KB
testcase_08 AC 123 ms
49,832 KB
testcase_09 AC 128 ms
50,116 KB
testcase_10 AC 130 ms
50,056 KB
testcase_11 AC 127 ms
49,800 KB
testcase_12 AC 129 ms
50,188 KB
testcase_13 AC 127 ms
50,152 KB
testcase_14 AC 927 ms
63,816 KB
testcase_15 AC 882 ms
64,836 KB
testcase_16 AC 871 ms
64,076 KB
testcase_17 AC 857 ms
64,376 KB
testcase_18 AC 859 ms
63,808 KB
testcase_19 AC 895 ms
64,160 KB
testcase_20 AC 874 ms
64,708 KB
testcase_21 AC 895 ms
65,240 KB
testcase_22 AC 736 ms
59,380 KB
testcase_23 AC 698 ms
58,420 KB
testcase_24 AC 651 ms
55,424 KB
testcase_25 AC 620 ms
55,188 KB
testcase_26 AC 618 ms
55,100 KB
testcase_27 AC 676 ms
59,620 KB
testcase_28 AC 675 ms
59,720 KB
testcase_29 AC 709 ms
59,320 KB
testcase_30 AC 693 ms
59,576 KB
testcase_31 AC 695 ms
59,532 KB
testcase_32 AC 671 ms
59,596 KB
testcase_33 AC 702 ms
59,604 KB
testcase_34 AC 721 ms
60,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int k = sc.nextInt();
    	int[] arr = new int[n];
    	for (int i = 0; i < n; i++) {
    	    arr[i] = sc.nextInt();
    	}
    	Arrays.sort(arr);
    	long ans = 1;
    	if (k - arr[n - 1] < arr[0]) {
    	    System.out.println(0);
    	    return;
    	}
    	int right = n - 1;
    	int left = 0;
    	int count = 0;
    	while (right >= n / 2) {
    	    while (left + 1 < right && k - arr[right] >= arr[left + 1]) {
    	        left++;
    	    }
    	    if (left + 1 <= count) {
    	        System.out.println(0);
    	        return;
    	    }
    	    ans *= left + 1 - count;
    	    ans %= MOD;
    	    count++;
    	    right--;
    	    left = Math.min(left, right - 1);
    	}
    	System.out.println(ans);
	}
}
0