結果

問題 No.91 赤、緑、青の石
ユーザー rf141rf141
提出日時 2015-12-20 17:23:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 935 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-24 06:52:42
合計ジャッジ時間 7,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,088 KB
testcase_01 AC 151 ms
41,056 KB
testcase_02 AC 148 ms
41,056 KB
testcase_03 AC 154 ms
41,696 KB
testcase_04 AC 148 ms
41,308 KB
testcase_05 AC 151 ms
41,556 KB
testcase_06 AC 148 ms
41,440 KB
testcase_07 AC 128 ms
41,324 KB
testcase_08 AC 125 ms
41,344 KB
testcase_09 AC 127 ms
41,436 KB
testcase_10 AC 128 ms
41,096 KB
testcase_11 AC 148 ms
41,376 KB
testcase_12 AC 149 ms
41,392 KB
testcase_13 AC 141 ms
41,696 KB
testcase_14 AC 145 ms
41,012 KB
testcase_15 AC 155 ms
41,308 KB
testcase_16 AC 118 ms
39,896 KB
testcase_17 AC 129 ms
41,424 KB
testcase_18 AC 131 ms
41,028 KB
testcase_19 AC 128 ms
41,036 KB
testcase_20 AC 138 ms
41,176 KB
testcase_21 AC 128 ms
41,156 KB
testcase_22 AC 129 ms
41,096 KB
testcase_23 AC 129 ms
41,424 KB
testcase_24 AC 129 ms
41,348 KB
testcase_25 AC 143 ms
41,360 KB
testcase_26 AC 143 ms
41,248 KB
testcase_27 AC 144 ms
41,412 KB
testcase_28 AC 144 ms
41,288 KB
testcase_29 AC 147 ms
41,200 KB
testcase_30 AC 133 ms
40,400 KB
testcase_31 AC 144 ms
41,188 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 red=r,green=g,blue=b;
		int sum = 0;
		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