結果

問題 No.91 赤、緑、青の石
ユーザー yy
提出日時 2016-03-17 22:19:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 51,984 KB
最終ジャッジ日時 2024-10-01 08:53:32
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
51,772 KB
testcase_01 AC 106 ms
51,584 KB
testcase_02 AC 107 ms
51,568 KB
testcase_03 AC 105 ms
51,548 KB
testcase_04 AC 101 ms
51,496 KB
testcase_05 AC 110 ms
51,552 KB
testcase_06 AC 122 ms
51,516 KB
testcase_07 AC 51 ms
50,240 KB
testcase_08 AC 52 ms
49,968 KB
testcase_09 AC 51 ms
50,036 KB
testcase_10 AC 50 ms
50,052 KB
testcase_11 AC 102 ms
51,552 KB
testcase_12 AC 134 ms
51,688 KB
testcase_13 AC 131 ms
51,668 KB
testcase_14 AC 123 ms
51,984 KB
testcase_15 AC 108 ms
51,616 KB
testcase_16 AC 51 ms
50,244 KB
testcase_17 AC 51 ms
50,284 KB
testcase_18 AC 49 ms
50,172 KB
testcase_19 AC 49 ms
50,200 KB
testcase_20 AC 51 ms
50,116 KB
testcase_21 AC 52 ms
49,768 KB
testcase_22 AC 51 ms
49,860 KB
testcase_23 AC 51 ms
50,032 KB
testcase_24 AC 52 ms
49,936 KB
testcase_25 AC 130 ms
51,916 KB
testcase_26 AC 116 ms
51,548 KB
testcase_27 AC 51 ms
50,140 KB
testcase_28 AC 93 ms
51,284 KB
testcase_29 AC 108 ms
51,400 KB
testcase_30 AC 110 ms
51,896 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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