結果

問題 No.794 チーム戦 (2)
ユーザー betrue12betrue12
提出日時 2019-02-22 22:45:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 198 ms / 1,500 ms
コード長 434 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-05-04 04:03:51
合計ジャッジ時間 6,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 89 ms
12,416 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 82 ms
12,416 KB
testcase_06 AC 83 ms
12,160 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 77 ms
12,160 KB
testcase_10 AC 72 ms
12,288 KB
testcase_11 AC 71 ms
12,288 KB
testcase_12 AC 72 ms
12,160 KB
testcase_13 AC 72 ms
12,160 KB
testcase_14 AC 195 ms
29,056 KB
testcase_15 AC 197 ms
29,056 KB
testcase_16 AC 198 ms
29,056 KB
testcase_17 AC 172 ms
29,056 KB
testcase_18 AC 187 ms
29,184 KB
testcase_19 AC 187 ms
29,184 KB
testcase_20 AC 187 ms
29,184 KB
testcase_21 AC 192 ms
29,056 KB
testcase_22 AC 154 ms
22,272 KB
testcase_23 AC 145 ms
21,632 KB
testcase_24 AC 128 ms
19,072 KB
testcase_25 AC 121 ms
18,304 KB
testcase_26 AC 122 ms
18,560 KB
testcase_27 AC 183 ms
28,928 KB
testcase_28 AC 174 ms
28,800 KB
testcase_29 AC 164 ms
28,928 KB
testcase_30 AC 159 ms
28,800 KB
testcase_31 AC 176 ms
28,800 KB
testcase_32 AC 171 ms
28,928 KB
testcase_33 AC 176 ms
28,928 KB
testcase_34 AC 177 ms
28,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
as = gets.split.map(&:to_i).sort

MOD = 10**9+7
ans = 1
pt = 0
pool = 0
(N-1).downto(0) do |i|
    while pt < i && as[pt] + as[i] <= K
        pt += 1
        pool += 1
    end
    if pt == i
        pool += 1
        break
    end
    if pool == 0
        puts 0
        exit
    end
    ans = ans * pool % MOD
    pool -= 1
end
while pool > 0
    ans = ans * (pool - 1) % MOD
    pool -= 2
end
puts ans
0