結果

問題 No.91 赤、緑、青の石
ユーザー tentententen
提出日時 2020-12-07 18:05:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 832 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 73,704 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-06-24 07:29:43
合計ジャッジ時間 7,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,068 KB
testcase_01 AC 132 ms
53,976 KB
testcase_02 AC 131 ms
53,800 KB
testcase_03 AC 129 ms
53,804 KB
testcase_04 AC 133 ms
53,988 KB
testcase_05 AC 133 ms
54,076 KB
testcase_06 AC 131 ms
54,048 KB
testcase_07 AC 131 ms
53,844 KB
testcase_08 AC 132 ms
53,884 KB
testcase_09 AC 131 ms
53,840 KB
testcase_10 AC 127 ms
53,728 KB
testcase_11 AC 131 ms
53,696 KB
testcase_12 AC 128 ms
53,988 KB
testcase_13 AC 128 ms
53,916 KB
testcase_14 AC 134 ms
54,072 KB
testcase_15 AC 132 ms
53,636 KB
testcase_16 AC 131 ms
53,996 KB
testcase_17 AC 128 ms
53,916 KB
testcase_18 AC 135 ms
53,896 KB
testcase_19 AC 128 ms
53,536 KB
testcase_20 AC 132 ms
54,204 KB
testcase_21 AC 134 ms
54,088 KB
testcase_22 AC 129 ms
53,752 KB
testcase_23 AC 132 ms
53,748 KB
testcase_24 AC 126 ms
54,156 KB
testcase_25 AC 127 ms
53,932 KB
testcase_26 AC 123 ms
54,208 KB
testcase_27 AC 131 ms
53,884 KB
testcase_28 AC 132 ms
53,848 KB
testcase_29 AC 117 ms
52,600 KB
testcase_30 AC 128 ms
54,104 KB
testcase_31 AC 129 ms
53,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] arr = new int[3];
        for (int i = 0; i < 3; i++) {
            arr[i] = sc.nextInt();
        }
        int left = 0;
        int right = Integer.MAX_VALUE / 10;
        while (right - left > 1) {
            int m = (left + right) / 2;
            int minus = 0;
            int plus = 0;
            for (int i = 0; i < 3; i++) {
                if (arr[i] < m) {
                    minus += m - arr[i];
                } else {
                    plus += (arr[i] - m) / 2;
                }
            }
            if (plus >= minus) {
                left = m;
            } else {
                right = m;
            }
        }
        System.out.println(left);
    }
}
0