結果

問題 No.91 赤、緑、青の石
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 20:05:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 3,684 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-06-24 07:06:29
合計ジャッジ時間 10,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
41,460 KB
testcase_01 AC 190 ms
41,292 KB
testcase_02 AC 169 ms
41,424 KB
testcase_03 AC 182 ms
41,512 KB
testcase_04 AC 167 ms
41,436 KB
testcase_05 AC 186 ms
41,472 KB
testcase_06 AC 166 ms
41,016 KB
testcase_07 AC 115 ms
39,988 KB
testcase_08 AC 130 ms
41,552 KB
testcase_09 AC 127 ms
41,272 KB
testcase_10 AC 131 ms
41,180 KB
testcase_11 AC 154 ms
40,576 KB
testcase_12 AC 191 ms
41,552 KB
testcase_13 AC 208 ms
41,480 KB
testcase_14 AC 182 ms
41,140 KB
testcase_15 AC 198 ms
41,480 KB
testcase_16 AC 135 ms
41,344 KB
testcase_17 AC 131 ms
41,272 KB
testcase_18 AC 135 ms
41,312 KB
testcase_19 AC 129 ms
41,216 KB
testcase_20 AC 132 ms
41,332 KB
testcase_21 AC 129 ms
41,284 KB
testcase_22 AC 129 ms
41,036 KB
testcase_23 AC 134 ms
41,048 KB
testcase_24 AC 131 ms
41,308 KB
testcase_25 AC 218 ms
41,220 KB
testcase_26 AC 211 ms
41,296 KB
testcase_27 AC 115 ms
40,124 KB
testcase_28 AC 165 ms
41,440 KB
testcase_29 AC 172 ms
41,176 KB
testcase_30 AC 174 ms
41,340 KB
testcase_31 AC 208 ms
41,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class RGB {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s= new Scanner(System.in);
		int[] rgb = new int[3];
		for(int i = 0;i < 3;i++){
			rgb[i] = s.nextInt();
		}
		s.close();
		int count = 0;
		Arrays.sort(rgb);
		while(rgb[0] + rgb[1] + rgb[2] >= 3){
			count += rgb[0];
			rgb[1] -= rgb[0];
			rgb[2] -= (rgb[0]+2);
			rgb[0] = 1;
			Arrays.sort(rgb);
		}
		System.out.println(count);

	}

}
0