結果

問題 No.91 赤、緑、青の石
ユーザー yy
提出日時 2016-03-17 22:29:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 1,049 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 77,144 KB
実行使用メモリ 51,176 KB
最終ジャッジ日時 2024-06-24 06:57:01
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
50,856 KB
testcase_01 AC 96 ms
51,044 KB
testcase_02 AC 98 ms
50,940 KB
testcase_03 AC 102 ms
50,968 KB
testcase_04 AC 92 ms
51,032 KB
testcase_05 AC 109 ms
51,008 KB
testcase_06 AC 95 ms
51,176 KB
testcase_07 AC 66 ms
50,044 KB
testcase_08 AC 62 ms
50,332 KB
testcase_09 AC 64 ms
49,856 KB
testcase_10 AC 66 ms
50,248 KB
testcase_11 AC 93 ms
50,960 KB
testcase_12 AC 113 ms
51,112 KB
testcase_13 AC 101 ms
50,852 KB
testcase_14 AC 111 ms
50,836 KB
testcase_15 AC 105 ms
50,952 KB
testcase_16 AC 66 ms
49,696 KB
testcase_17 AC 60 ms
50,196 KB
testcase_18 AC 64 ms
50,240 KB
testcase_19 AC 66 ms
50,200 KB
testcase_20 AC 66 ms
49,568 KB
testcase_21 AC 66 ms
49,564 KB
testcase_22 AC 65 ms
49,736 KB
testcase_23 AC 63 ms
49,976 KB
testcase_24 AC 65 ms
49,728 KB
testcase_25 AC 118 ms
50,896 KB
testcase_26 AC 112 ms
50,876 KB
testcase_27 AC 63 ms
49,884 KB
testcase_28 AC 93 ms
51,020 KB
testcase_29 AC 93 ms
50,916 KB
testcase_30 AC 97 ms
51,052 KB
testcase_31 AC 109 ms
50,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] s = br.readLine().split(" ");
        int[] n = new int[3];
        for (int i = 0; i < 3; i++) {
            n[i] = Integer.parseInt(s[i]);
        }
        while (true) {
            int max = 0;
            int maxi = 0;
            int min = Integer.MAX_VALUE;
            int mini = 0;
            for (int i = 0; i < 3; i++) {
                if (max < n[i]) {
                    max = n[i];
                    maxi = i;
                }
                if (min > n[i]) {
                    min = n[i];
                    mini = i;
                }
            }
            if (max - min < 2) break;
            n[maxi] -= 2;
            n[mini]++;
        }
        System.out.println(Math.min(Math.min(n[0], n[1]), n[2]));
    }
}
0