結果

問題 No.91 赤、緑、青の石
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-30 18:20:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 54,592 KB
最終ジャッジ日時 2024-06-24 07:17:33
合計ジャッジ時間 8,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
53,320 KB
testcase_01 AC 179 ms
54,252 KB
testcase_02 AC 165 ms
54,092 KB
testcase_03 AC 174 ms
54,144 KB
testcase_04 AC 159 ms
54,500 KB
testcase_05 AC 181 ms
54,180 KB
testcase_06 AC 165 ms
54,592 KB
testcase_07 AC 127 ms
54,020 KB
testcase_08 AC 131 ms
54,332 KB
testcase_09 AC 127 ms
54,040 KB
testcase_10 AC 128 ms
54,240 KB
testcase_11 AC 159 ms
54,184 KB
testcase_12 AC 180 ms
54,108 KB
testcase_13 AC 197 ms
53,872 KB
testcase_14 AC 175 ms
53,952 KB
testcase_15 AC 193 ms
54,308 KB
testcase_16 AC 132 ms
53,776 KB
testcase_17 AC 129 ms
54,092 KB
testcase_18 AC 128 ms
54,156 KB
testcase_19 AC 127 ms
53,800 KB
testcase_20 AC 130 ms
54,000 KB
testcase_21 AC 127 ms
53,856 KB
testcase_22 AC 128 ms
54,540 KB
testcase_23 AC 117 ms
53,100 KB
testcase_24 AC 127 ms
54,252 KB
testcase_25 AC 213 ms
53,956 KB
testcase_26 AC 203 ms
54,148 KB
testcase_27 AC 127 ms
53,968 KB
testcase_28 AC 161 ms
54,164 KB
testcase_29 AC 170 ms
53,928 KB
testcase_30 AC 167 ms
54,284 KB
testcase_31 AC 196 ms
53,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int r=scanner.nextInt();
		int b=scanner.nextInt();
		int g=scanner.nextInt();
		int x[]=new int[3];
		x[0]=r;
		x[1]=b;
		x[2]=g;
		Arrays.sort(x);
		while(true) {
		if(x[2]-x[0]<3)break;
		x[0]++;
		x[2]-=2;
		Arrays.sort(x);
		}
		System.out.println(x[0]);
	}
}
0