結果

問題 No.91 赤、緑、青の石
ユーザー hikari2004hikari2004
提出日時 2016-04-22 17:33:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 1,140 bytes
コンパイル時間 3,646 ms
コンパイル使用メモリ 76,532 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-24 06:57:43
合計ジャッジ時間 9,957 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
53,816 KB
testcase_01 AC 170 ms
54,028 KB
testcase_02 AC 159 ms
53,580 KB
testcase_03 AC 166 ms
53,544 KB
testcase_04 AC 164 ms
53,760 KB
testcase_05 AC 170 ms
54,172 KB
testcase_06 AC 164 ms
53,940 KB
testcase_07 AC 153 ms
53,936 KB
testcase_08 AC 149 ms
54,068 KB
testcase_09 AC 154 ms
54,224 KB
testcase_10 AC 151 ms
54,060 KB
testcase_11 AC 161 ms
53,804 KB
testcase_12 AC 163 ms
53,640 KB
testcase_13 AC 159 ms
53,816 KB
testcase_14 AC 163 ms
53,764 KB
testcase_15 AC 160 ms
53,896 KB
testcase_16 AC 151 ms
54,132 KB
testcase_17 AC 150 ms
54,460 KB
testcase_18 AC 154 ms
54,260 KB
testcase_19 AC 149 ms
54,164 KB
testcase_20 AC 150 ms
53,824 KB
testcase_21 AC 150 ms
53,736 KB
testcase_22 AC 151 ms
54,128 KB
testcase_23 AC 149 ms
53,664 KB
testcase_24 AC 158 ms
54,076 KB
testcase_25 AC 163 ms
53,784 KB
testcase_26 AC 167 ms
53,944 KB
testcase_27 AC 151 ms
54,400 KB
testcase_28 AC 162 ms
54,292 KB
testcase_29 AC 168 ms
54,056 KB
testcase_30 AC 169 ms
53,636 KB
testcase_31 AC 168 ms
54,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;

import java.util.Scanner;


//TODO 見直し
public class No_91 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int r = sc.nextInt();
		int g = sc.nextInt();
		int b = sc.nextInt();

		System.out.println(solve(r,g,b));
	}

	public static int solve(int r, int g, int b){
		int basic = Math.min(Math.min(r,g),b); //各石の最低値
		int red = r - basic;
		int green = g - basic;
		int blue = b - basic;
		int acce = basic; //暫定的なアクセサリーの数は変数basic


		while(true){
			if(red == 0){
				if(Math.max(green, blue) > 2){
					if(blue > green){
						blue -= 2;
					}else{
						green -= 2;
					}
				}else{
					break;
				}
				red++;
			}
			if(green == 0){
				if(Math.max(red, blue) > 2){
					if(blue > red){
						blue -= 2;
					}else{
						red -= 2;
					}
				}else{
					break;
				}
				green++;
			}
			if(blue == 0){
				if(Math.max(red, green) > 2){
					if(red > green){
						red -= 2;
					}else{
						green -= 2;
					}
				}else{
					break;
				}
				blue++;
			}
			red--;
			green--;
			blue--;
			acce++;
		}

		return acce;
	}
}
0