結果

問題 No.91 赤、緑、青の石
ユーザー tsunabittsunabit
提出日時 2020-02-09 17:19:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 3,277 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-06-24 07:23:50
合計ジャッジ時間 9,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
54,324 KB
testcase_01 AC 181 ms
54,096 KB
testcase_02 AC 165 ms
54,308 KB
testcase_03 AC 176 ms
54,168 KB
testcase_04 AC 164 ms
54,172 KB
testcase_05 AC 183 ms
54,216 KB
testcase_06 AC 165 ms
54,300 KB
testcase_07 AC 131 ms
54,208 KB
testcase_08 AC 128 ms
53,908 KB
testcase_09 AC 129 ms
54,048 KB
testcase_10 AC 131 ms
54,392 KB
testcase_11 AC 160 ms
54,144 KB
testcase_12 AC 185 ms
54,288 KB
testcase_13 AC 188 ms
53,612 KB
testcase_14 AC 171 ms
53,880 KB
testcase_15 AC 176 ms
53,340 KB
testcase_16 AC 124 ms
53,948 KB
testcase_17 AC 131 ms
54,668 KB
testcase_18 AC 128 ms
54,172 KB
testcase_19 AC 129 ms
54,248 KB
testcase_20 AC 128 ms
54,144 KB
testcase_21 AC 128 ms
54,184 KB
testcase_22 AC 131 ms
54,148 KB
testcase_23 AC 131 ms
54,116 KB
testcase_24 AC 132 ms
54,356 KB
testcase_25 AC 220 ms
54,000 KB
testcase_26 AC 207 ms
54,212 KB
testcase_27 AC 128 ms
54,176 KB
testcase_28 AC 158 ms
54,332 KB
testcase_29 AC 171 ms
54,236 KB
testcase_30 AC 169 ms
54,276 KB
testcase_31 AC 201 ms
54,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No91 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] rgb = new int[3];
		for(int i = 0; i < rgb.length; i++) {
			rgb[i] = sc.nextInt();
		}
		while(true){
			Arrays.sort(rgb);
			if(rgb[2]-rgb[0] <= 2){
				break;
			}else{
				rgb[0] += 1;
				rgb[2] -= 2;
			}
		}
		System.out.println(rgb[0]);
	}
}
0