結果

問題 No.91 赤、緑、青の石
ユーザー code-devocode-devo
提出日時 2016-01-20 20:21:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,576 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-24 06:54:25
合計ジャッジ時間 18,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,060 ms
12,288 KB
testcase_01 AC 720 ms
12,544 KB
testcase_02 AC 489 ms
12,416 KB
testcase_03 AC 826 ms
12,416 KB
testcase_04 AC 436 ms
12,288 KB
testcase_05 AC 973 ms
12,288 KB
testcase_06 AC 337 ms
12,288 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 89 ms
12,416 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 87 ms
12,416 KB
testcase_11 AC 339 ms
12,288 KB
testcase_12 AC 887 ms
12,544 KB
testcase_13 AC 958 ms
12,544 KB
testcase_14 AC 670 ms
12,288 KB
testcase_15 AC 1,023 ms
12,288 KB
testcase_16 AC 87 ms
12,160 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 AC 88 ms
12,416 KB
testcase_19 AC 87 ms
12,288 KB
testcase_20 AC 87 ms
12,160 KB
testcase_21 AC 87 ms
12,288 KB
testcase_22 AC 87 ms
12,160 KB
testcase_23 AC 87 ms
12,288 KB
testcase_24 AC 87 ms
12,288 KB
testcase_25 AC 1,576 ms
12,288 KB
testcase_26 AC 1,466 ms
12,544 KB
testcase_27 AC 87 ms
12,288 KB
testcase_28 AC 210 ms
12,544 KB
testcase_29 AC 346 ms
12,288 KB
testcase_30 AC 1,049 ms
12,544 KB
testcase_31 AC 1,409 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# 何の工夫も見られない・・・
RGB = gets.split.map(&:to_i).sort

while RGB[2] - RGB[0] >= 2 do
  RGB[2] -= 2
  RGB[0] += 1
  RGB.sort!
end

puts RGB.min
0