結果

問題 No.91 赤、緑、青の石
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-27 20:07:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 383 ms / 5,000 ms
コード長 633 bytes
コンパイル時間 3,892 ms
コンパイル使用メモリ 79,468 KB
実行使用メモリ 57,628 KB
最終ジャッジ日時 2024-06-24 07:11:33
合計ジャッジ時間 12,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
57,628 KB
testcase_01 AC 331 ms
57,280 KB
testcase_02 AC 289 ms
57,124 KB
testcase_03 AC 313 ms
57,468 KB
testcase_04 AC 314 ms
57,440 KB
testcase_05 AC 317 ms
57,036 KB
testcase_06 AC 326 ms
57,532 KB
testcase_07 AC 120 ms
52,796 KB
testcase_08 AC 134 ms
53,988 KB
testcase_09 AC 119 ms
52,808 KB
testcase_10 AC 133 ms
54,036 KB
testcase_11 AC 271 ms
57,280 KB
testcase_12 AC 330 ms
57,216 KB
testcase_13 AC 355 ms
57,164 KB
testcase_14 AC 321 ms
57,124 KB
testcase_15 AC 347 ms
57,416 KB
testcase_16 AC 135 ms
53,896 KB
testcase_17 AC 134 ms
53,904 KB
testcase_18 AC 132 ms
53,656 KB
testcase_19 AC 135 ms
54,428 KB
testcase_20 AC 133 ms
54,176 KB
testcase_21 AC 135 ms
53,832 KB
testcase_22 AC 138 ms
53,840 KB
testcase_23 AC 134 ms
54,056 KB
testcase_24 AC 134 ms
53,824 KB
testcase_25 AC 383 ms
57,196 KB
testcase_26 AC 374 ms
57,448 KB
testcase_27 AC 135 ms
53,888 KB
testcase_28 AC 245 ms
57,532 KB
testcase_29 AC 273 ms
57,100 KB
testcase_30 AC 270 ms
57,172 KB
testcase_31 AC 342 ms
57,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.Scanner;

public class No91 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        List<Integer> l = new ArrayList<Integer>() {{
            add(s.nextInt());
            add(s.nextInt());
            add(s.nextInt());
        }};
        l.sort(Comparator.naturalOrder());
        while (l.get(2) - l.get(0) > 2) {
            l.set(2, l.get(2) - 2);
            l.set(0, l.get(0) + 1);
            l.sort(Comparator.naturalOrder());
        }
        System.out.println(l.get(0));
    }
}
0