結果

問題 No.91 赤、緑、青の石
ユーザー letrangerjpletrangerjp
提出日時 2017-11-02 22:40:08
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-05-02 03:59:16
合計ジャッジ時間 14,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 768 ms
12,416 KB
testcase_01 AC 550 ms
12,288 KB
testcase_02 AC 125 ms
12,288 KB
testcase_03 AC 672 ms
12,160 KB
testcase_04 AC 335 ms
12,416 KB
testcase_05 AC 646 ms
12,288 KB
testcase_06 WA -
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 92 ms
12,288 KB
testcase_11 AC 111 ms
12,160 KB
testcase_12 AC 484 ms
12,288 KB
testcase_13 AC 1,028 ms
12,288 KB
testcase_14 AC 302 ms
12,288 KB
testcase_15 AC 829 ms
12,416 KB
testcase_16 AC 89 ms
12,160 KB
testcase_17 AC 91 ms
12,160 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 AC 94 ms
12,288 KB
testcase_20 AC 92 ms
12,160 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 88 ms
12,032 KB
testcase_24 AC 89 ms
12,032 KB
testcase_25 AC 1,691 ms
12,288 KB
testcase_26 AC 1,413 ms
12,416 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 91 ms
12,032 KB
testcase_31 AC 1,200 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=gets.split.map &:to_i
while a.sort![2]-a[0]>1
  n=[(a[2]-a[1])/2,1].max
  a[2]-=2*n
  a[0]+=n
end
p a.min
0