結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー yuruhiyayuruhiya
提出日時 2020-08-08 11:00:05
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-10-01 08:39:25
合計ジャッジ時間 6,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 90 ms
12,032 KB
testcase_04 WA -
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 423 ms
27,904 KB
testcase_08 AC 419 ms
26,880 KB
testcase_09 AC 409 ms
27,648 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 87 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.split.map &:to_i
x = gets.to_i
a = Array.new(n - 1) { gets.to_i }.sort.reverse
pos =
	a.bsearch_index do |i|
		b = a.dup
		b.delete_at(b.index i)
		m <= b.each_slice(2).count { |j| x + i < j.sum }
	end || n - 1
puts pos > 0 ? a[pos - 1] : -1
0