結果

問題 No.91 赤、緑、青の石
ユーザー rf141rf141
提出日時 2015-12-20 17:28:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 993 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 77,272 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-24 06:53:26
合計ジャッジ時間 7,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,132 KB
testcase_01 AC 141 ms
41,056 KB
testcase_02 AC 141 ms
41,168 KB
testcase_03 AC 147 ms
41,232 KB
testcase_04 AC 147 ms
41,136 KB
testcase_05 AC 142 ms
41,036 KB
testcase_06 AC 142 ms
41,668 KB
testcase_07 AC 128 ms
41,164 KB
testcase_08 AC 131 ms
41,224 KB
testcase_09 AC 130 ms
41,400 KB
testcase_10 AC 128 ms
41,212 KB
testcase_11 AC 141 ms
41,384 KB
testcase_12 AC 140 ms
41,428 KB
testcase_13 AC 142 ms
41,304 KB
testcase_14 AC 140 ms
41,392 KB
testcase_15 AC 147 ms
41,256 KB
testcase_16 AC 128 ms
41,312 KB
testcase_17 AC 131 ms
41,300 KB
testcase_18 AC 133 ms
41,056 KB
testcase_19 AC 133 ms
41,392 KB
testcase_20 AC 129 ms
41,324 KB
testcase_21 AC 130 ms
41,208 KB
testcase_22 AC 128 ms
41,140 KB
testcase_23 AC 131 ms
41,304 KB
testcase_24 AC 131 ms
41,144 KB
testcase_25 AC 145 ms
41,692 KB
testcase_26 AC 146 ms
41,328 KB
testcase_27 AC 131 ms
41,276 KB
testcase_28 AC 139 ms
41,172 KB
testcase_29 AC 140 ms
41,056 KB
testcase_30 AC 137 ms
40,828 KB
testcase_31 AC 147 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int r = scan.nextInt();
		int g = scan.nextInt();
		int b = scan.nextInt();
		System.out.println(Calc(r,g,b));
	}

	public static int Calc(int r,int g,int b){
		int base = Math.min(Math.min(r,g),b);
		int red=r-base,green=g-base,blue=b-base;
		int sum = base;
		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(green > red){
						green -= 2;
					}else{
						red -= 2;
					}
				}else{
					break;
				}
				blue++;
			}
			red--;green--;blue--;
			sum++;
		}
		return sum;

	}
}
0