結果

問題 No.91 赤、緑、青の石
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-03 02:09:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 5,000 ms
コード長 391 bytes
コンパイル時間 3,315 ms
コンパイル使用メモリ 75,980 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-06-24 07:15:34
合計ジャッジ時間 9,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
54,380 KB
testcase_01 AC 183 ms
54,020 KB
testcase_02 AC 171 ms
54,400 KB
testcase_03 AC 182 ms
53,984 KB
testcase_04 AC 165 ms
54,124 KB
testcase_05 AC 185 ms
54,164 KB
testcase_06 AC 162 ms
54,004 KB
testcase_07 AC 133 ms
54,304 KB
testcase_08 AC 133 ms
53,884 KB
testcase_09 AC 130 ms
54,224 KB
testcase_10 AC 116 ms
53,332 KB
testcase_11 AC 151 ms
53,696 KB
testcase_12 AC 187 ms
54,240 KB
testcase_13 AC 206 ms
54,376 KB
testcase_14 AC 179 ms
54,212 KB
testcase_15 AC 199 ms
54,380 KB
testcase_16 AC 130 ms
54,084 KB
testcase_17 AC 128 ms
54,132 KB
testcase_18 AC 129 ms
54,116 KB
testcase_19 AC 129 ms
54,016 KB
testcase_20 AC 133 ms
54,172 KB
testcase_21 AC 133 ms
54,356 KB
testcase_22 AC 126 ms
53,024 KB
testcase_23 AC 123 ms
53,044 KB
testcase_24 AC 128 ms
54,384 KB
testcase_25 AC 215 ms
54,460 KB
testcase_26 AC 213 ms
54,264 KB
testcase_27 AC 133 ms
54,252 KB
testcase_28 AC 162 ms
54,316 KB
testcase_29 AC 170 ms
54,404 KB
testcase_30 AC 174 ms
54,468 KB
testcase_31 AC 208 ms
54,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No091{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int r = sc.nextInt();
		int g = sc.nextInt();
		int b = sc.nextInt();
		int[] rgb = new int[]{r, g, b};

		while(true){
			Arrays.sort(rgb);
			if(rgb[2]-rgb[0] <= 2){
				break;
			}else{
				rgb[0] += 1;
				rgb[2] -= 2;
			}
		}
		System.out.println(rgb[0]);
	}
}
0