結果

問題 No.91 赤、緑、青の石
ユーザー wotsushiwotsushi
提出日時 2017-03-24 22:21:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 555 ms / 5,000 ms
コード長 187 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-06-24 07:06:15
合計ジャッジ時間 19,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
92,672 KB
testcase_01 AC 546 ms
92,800 KB
testcase_02 AC 533 ms
92,672 KB
testcase_03 AC 544 ms
92,800 KB
testcase_04 AC 542 ms
92,672 KB
testcase_05 AC 534 ms
92,672 KB
testcase_06 AC 539 ms
92,544 KB
testcase_07 AC 538 ms
92,672 KB
testcase_08 AC 542 ms
92,544 KB
testcase_09 AC 545 ms
92,672 KB
testcase_10 AC 549 ms
92,672 KB
testcase_11 AC 545 ms
92,800 KB
testcase_12 AC 550 ms
92,800 KB
testcase_13 AC 544 ms
92,672 KB
testcase_14 AC 542 ms
92,544 KB
testcase_15 AC 544 ms
92,672 KB
testcase_16 AC 555 ms
92,544 KB
testcase_17 AC 547 ms
92,544 KB
testcase_18 AC 544 ms
92,800 KB
testcase_19 AC 542 ms
92,544 KB
testcase_20 AC 538 ms
92,672 KB
testcase_21 AC 555 ms
92,800 KB
testcase_22 AC 537 ms
92,672 KB
testcase_23 AC 545 ms
92,672 KB
testcase_24 AC 534 ms
92,800 KB
testcase_25 AC 540 ms
92,544 KB
testcase_26 AC 547 ms
92,800 KB
testcase_27 AC 542 ms
92,672 KB
testcase_28 AC 536 ms
92,672 KB
testcase_29 AC 543 ms
92,672 KB
testcase_30 AC 543 ms
92,672 KB
testcase_31 AC 540 ms
92,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

R, G, B = gets.split.map(&:to_i)
ans = (10**7).downto(0).to_a.bsearch {|x|
  [R - x, G - x, B - x].map {|y|
    if y >= 0
      y / 2
    else
      y
    end
}.inject(:+) >= 0}
puts ans
0