結果

問題 No.794 チーム戦 (2)
ユーザー simansiman
提出日時 2022-05-10 17:18:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-07-17 23:42:48
合計ジャッジ時間 9,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 89 ms
12,160 KB
testcase_11 WA -
testcase_12 AC 89 ms
12,032 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 382 ms
29,952 KB
testcase_17 AC 384 ms
29,824 KB
testcase_18 AC 259 ms
30,592 KB
testcase_19 AC 256 ms
30,592 KB
testcase_20 AC 252 ms
30,592 KB
testcase_21 AC 250 ms
30,720 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 337 ms
29,568 KB
testcase_30 AC 379 ms
29,440 KB
testcase_31 AC 231 ms
30,336 KB
testcase_32 AC 228 ms
30,336 KB
testcase_33 AC 280 ms
30,080 KB
testcase_34 AC 280 ms
30,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = gets.split.map(&:to_i).sort
MOD = 10 ** 9 + 7

upper = A.select { |a| a > K / 2 }
lower = A.select { |a| a <= K / 2 }

ans = 1
ls = lower.size

upper.each_with_index do |a, i|
  lim = K - a
  idx = lower.bsearch_index { |b| lim < b } || lower.size

  ans *= (idx - i)
  ans = 0 if ans < 0
  ans %= MOD
  ls -= 1
end

while ls > 0
  ans *= (ls - 1)
  ans %= MOD
  ls -= 2
end

puts ans
0