結果

問題 No.91 赤、緑、青の石
ユーザー rf141rf141
提出日時 2015-12-20 17:19:50
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-09-17 12:18:03
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,192 KB
testcase_01 AC 119 ms
41,424 KB
testcase_02 AC 126 ms
40,196 KB
testcase_03 AC 124 ms
40,240 KB
testcase_04 AC 124 ms
41,348 KB
testcase_05 AC 136 ms
41,160 KB
testcase_06 WA -
testcase_07 AC 115 ms
41,196 KB
testcase_08 AC 103 ms
40,084 KB
testcase_09 AC 116 ms
40,228 KB
testcase_10 AC 117 ms
41,640 KB
testcase_11 AC 112 ms
40,504 KB
testcase_12 AC 121 ms
41,464 KB
testcase_13 AC 119 ms
41,084 KB
testcase_14 AC 113 ms
41,096 KB
testcase_15 AC 132 ms
41,112 KB
testcase_16 AC 99 ms
40,964 KB
testcase_17 AC 114 ms
41,220 KB
testcase_18 AC 113 ms
40,952 KB
testcase_19 AC 112 ms
41,340 KB
testcase_20 AC 101 ms
41,340 KB
testcase_21 AC 115 ms
41,352 KB
testcase_22 AC 115 ms
41,160 KB
testcase_23 AC 115 ms
39,776 KB
testcase_24 AC 114 ms
41,384 KB
testcase_25 AC 123 ms
41,068 KB
testcase_26 AC 130 ms
41,212 KB
testcase_27 AC 114 ms
40,948 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 111 ms
41,040 KB
testcase_31 AC 133 ms
41,256 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 next = 0;
		while(true){
			if(red == 0){
				if(Math.max(green,blue) > 2){
					if(blue > green){
						blue -= 2;
					}else{
						green -= 2;
					}
				}else{
					break;
				}
				red++;
			}else if(green == 0){
				if(Math.max(red,blue) > 2){
					if(blue > red){
						blue -= 2;
					}else{
						red -= 2;
					}
				}else{
					break;
				}
				green++;
			}else if(blue == 0){
				if(Math.max(red,green) > 2){
					if(green > red){
						green -= 2;
					}else{
						red -= 2;
					}
				}else{
					break;
				}
				blue++;
			}
			red--;green--;blue--;
			next++;
		}
		return base+next;

	}
}
0