結果

問題 No.91 赤、緑、青の石
ユーザー 小指が強い人小指が強い人
提出日時 2016-01-13 22:08:50
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-19 18:57:27
合計ジャッジ時間 3,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a = gets.split.map(&:to_i)
a.sort!
res = 0
res += a[0]
2.downto(0){|i| a[i] -= a[0]}
a2 = a[2] / 3
if a[1] <= a2
    puts res + a[1]
    exit
end
res += a2
a[1] -= a2
a[2] -= a2 * 3
a1 = a[1] / 3
if a[2] <= a1
    puts res + a[2]
    exit
end
puts res + a1
0