結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
58,228 KB
testcase_01 AC 98 ms
51,508 KB
testcase_02 AC 82 ms
51,040 KB
testcase_03 AC 83 ms
51,144 KB
testcase_04 AC 78 ms
51,108 KB
testcase_05 AC 81 ms
51,104 KB
testcase_06 WA -
testcase_07 AC 58 ms
50,136 KB
testcase_08 AC 56 ms
50,196 KB
testcase_09 AC 55 ms
50,204 KB
testcase_10 AC 55 ms
49,884 KB
testcase_11 WA -
testcase_12 AC 93 ms
51,436 KB
testcase_13 AC 98 ms
51,376 KB
testcase_14 WA -
testcase_15 AC 85 ms
51,120 KB
testcase_16 AC 55 ms
50,336 KB
testcase_17 AC 55 ms
49,980 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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) {
                    for (int j = 0; j < 3; j++) {
                        if (j == i) continue;
                        if (rgb[j] < avg) {
                            rgb[j]++;
                            rgb[i] -= 2;
                            break;
                        }
                    }
                }
            }
        }
        System.out.println(Math.min(Math.min(rgb[0], rgb[1]), rgb[2]));
    }
}
0