結果

問題 No.91 赤、緑、青の石
ユーザー mmmpppmmmppp
提出日時 2017-03-03 16:10:25
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,790 ms / 5,000 ms
コード長 82 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-24 07:03:29
合計ジャッジ時間 20,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,245 ms
12,288 KB
testcase_01 AC 840 ms
12,288 KB
testcase_02 AC 560 ms
12,288 KB
testcase_03 AC 955 ms
12,416 KB
testcase_04 AC 504 ms
12,544 KB
testcase_05 AC 1,106 ms
12,544 KB
testcase_06 AC 372 ms
12,288 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 377 ms
12,544 KB
testcase_12 AC 1,011 ms
12,288 KB
testcase_13 AC 1,101 ms
12,416 KB
testcase_14 AC 764 ms
12,288 KB
testcase_15 AC 1,179 ms
12,288 KB
testcase_16 AC 88 ms
12,288 KB
testcase_17 AC 86 ms
12,160 KB
testcase_18 AC 87 ms
12,288 KB
testcase_19 AC 88 ms
12,288 KB
testcase_20 AC 88 ms
12,160 KB
testcase_21 AC 89 ms
12,160 KB
testcase_22 AC 87 ms
12,288 KB
testcase_23 AC 86 ms
12,160 KB
testcase_24 AC 88 ms
12,416 KB
testcase_25 AC 1,790 ms
12,288 KB
testcase_26 AC 1,682 ms
12,544 KB
testcase_27 AC 86 ms
12,160 KB
testcase_28 AC 224 ms
12,288 KB
testcase_29 AC 385 ms
12,288 KB
testcase_30 AC 1,194 ms
12,288 KB
testcase_31 AC 1,615 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=gets.split.map(&:to_i).sort;a=[a[0]+1,a[1],a[2]-2].sort while a[2]-a[0]>2;p a[0]
0