結果

問題 No.91 赤、緑、青の石
ユーザー rf141
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25 WA * 3
権限があれば一括ダウンロードができます

ソースコード

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