結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー yuruhiyayuruhiya
提出日時 2020-08-08 11:38:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 417 ms / 3,000 ms
コード長 389 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-10-01 11:28:34
合計ジャッジ時間 6,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 85 ms
12,288 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 417 ms
27,776 KB
testcase_08 AC 366 ms
27,008 KB
testcase_09 AC 388 ms
27,904 KB
testcase_10 AC 370 ms
27,776 KB
testcase_11 AC 364 ms
27,904 KB
testcase_12 AC 381 ms
28,032 KB
testcase_13 AC 374 ms
28,032 KB
testcase_14 AC 374 ms
27,776 KB
testcase_15 AC 384 ms
27,904 KB
testcase_16 AC 391 ms
28,032 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 AC 89 ms
12,416 KB
testcase_19 AC 91 ms
12,288 KB
testcase_20 AC 85 ms
12,288 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 |ai|
		b = a.dup
		b.delete_at(a.index ai)
		j = b.size - 1
		cnt =
			(0...b.size).count do |i|
				j -= 1 while i < j && x + ai >= b[i] + b[j]
				if i >= j
					false
				else
					j -= 1
					true
				end
			end
		cnt >= m
	end || n - 1
puts pos > 0 ? a[pos - 1] : -1
0