結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 81 ms
12,032 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 384 ms
14,464 KB
testcase_08 AC 361 ms
14,336 KB
testcase_09 AC 399 ms
14,464 KB
testcase_10 AC 376 ms
14,336 KB
testcase_11 AC 360 ms
14,464 KB
testcase_12 AC 393 ms
14,336 KB
testcase_13 AC 369 ms
14,720 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
x=gets.to_i
a=(1...n).map{gets.to_i}.sort.reverse
pos=a.bsearch_index{|y|
j=n-2
(0...n-1).count{|i|
j-=1while i<j&&x+y>=a[i]+a[j]
i>=j ?false:j-=1}>=m}||n-1
p pos>0?a[pos-1]:-1
0