結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,300 KB
testcase_01 AC 129 ms
53,924 KB
testcase_02 AC 118 ms
52,984 KB
testcase_03 AC 125 ms
53,732 KB
testcase_04 AC 118 ms
53,408 KB
testcase_05 AC 120 ms
53,320 KB
testcase_06 WA -
testcase_07 AC 115 ms
54,084 KB
testcase_08 AC 105 ms
52,660 KB
testcase_09 AC 125 ms
54,040 KB
testcase_10 AC 120 ms
54,028 KB
testcase_11 AC 122 ms
53,320 KB
testcase_12 AC 134 ms
54,168 KB
testcase_13 AC 128 ms
54,256 KB
testcase_14 AC 131 ms
54,136 KB
testcase_15 AC 129 ms
54,140 KB
testcase_16 AC 113 ms
54,132 KB
testcase_17 AC 120 ms
54,052 KB
testcase_18 AC 111 ms
54,360 KB
testcase_19 AC 126 ms
54,360 KB
testcase_20 AC 107 ms
52,688 KB
testcase_21 AC 136 ms
54,184 KB
testcase_22 AC 123 ms
54,184 KB
testcase_23 AC 121 ms
53,960 KB
testcase_24 AC 102 ms
52,952 KB
testcase_25 AC 125 ms
54,108 KB
testcase_26 AC 135 ms
53,988 KB
testcase_27 AC 132 ms
54,200 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 126 ms
53,072 KB
testcase_31 AC 126 ms
53,080 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++;
			}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--;
			sum++;
		}
		return sum;

	}
}
0