結果

問題 No.91 赤、緑、青の石
ユーザー 小指が強い人小指が強い人
提出日時 2016-01-13 22:25:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 11,924 KB
実行使用メモリ 16,100 KB
最終ジャッジ日時 2023-10-19 22:59:53
合計ジャッジ時間 3,844 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 91 ms
16,100 KB
testcase_07 AC 85 ms
16,100 KB
testcase_08 AC 86 ms
16,100 KB
testcase_09 AC 87 ms
16,096 KB
testcase_10 AC 88 ms
16,100 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 87 ms
16,100 KB
testcase_17 AC 86 ms
16,100 KB
testcase_18 AC 87 ms
16,100 KB
testcase_19 AC 86 ms
16,100 KB
testcase_20 AC 86 ms
16,100 KB
testcase_21 AC 87 ms
16,100 KB
testcase_22 AC 85 ms
16,100 KB
testcase_23 AC 84 ms
16,100 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 87 ms
16,100 KB
testcase_28 AC 88 ms
16,096 KB
testcase_29 AC 89 ms
16,100 KB
testcase_30 AC 88 ms
16,100 KB
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a = gets.split.map(&:to_i)
a.sort!
res = a[0]
2.downto(0){|i| a[i] -= a[0]}
while true do
    d = a[2] / 3
    if d == 0
        break
    elsif a[1] <= d
        res += a[1]
        a[2] -= a[1] * 3
        a[1] -= a[1]
        break
    end
    res += d
    a[1] -= d
    a[2] -= d * 3
    a.sort!
end
res += a[2] / 5
puts res
0