結果

問題 No.91 赤、緑、青の石
ユーザー kano_townkano_town
提出日時 2014-12-07 19:30:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 757 bytes
コンパイル時間 3,725 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-24 06:43:05
合計ジャッジ時間 9,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,024 KB
testcase_01 AC 137 ms
52,840 KB
testcase_02 AC 157 ms
53,980 KB
testcase_03 AC 154 ms
54,168 KB
testcase_04 AC 157 ms
53,944 KB
testcase_05 AC 153 ms
54,256 KB
testcase_06 AC 157 ms
54,132 KB
testcase_07 AC 129 ms
53,864 KB
testcase_08 AC 131 ms
54,176 KB
testcase_09 AC 131 ms
53,912 KB
testcase_10 AC 130 ms
53,812 KB
testcase_11 AC 165 ms
54,204 KB
testcase_12 AC 154 ms
54,152 KB
testcase_13 AC 152 ms
54,152 KB
testcase_14 AC 153 ms
54,356 KB
testcase_15 AC 156 ms
54,200 KB
testcase_16 AC 129 ms
54,472 KB
testcase_17 AC 131 ms
53,980 KB
testcase_18 AC 134 ms
54,044 KB
testcase_19 AC 132 ms
53,872 KB
testcase_20 AC 129 ms
54,244 KB
testcase_21 AC 133 ms
54,020 KB
testcase_22 AC 132 ms
54,228 KB
testcase_23 AC 133 ms
54,308 KB
testcase_24 AC 131 ms
54,168 KB
testcase_25 AC 160 ms
54,484 KB
testcase_26 AC 158 ms
54,368 KB
testcase_27 AC 157 ms
54,164 KB
testcase_28 AC 156 ms
54,228 KB
testcase_29 AC 137 ms
52,936 KB
testcase_30 AC 151 ms
54,268 KB
testcase_31 AC 156 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder91 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long r = sc.nextLong(), g = sc.nextLong(), b = sc.nextLong();
		long sum = (r + g + b) / 3;
		long res = 0;
		while (true) {
			if (r == 0) {
				if (Math.max(b, g) > 2) {
					if (b > g) b -= 2;
					else g -= 2;
				}
				else break;
				r++;
			}
			if (g == 0) {
				if (Math.max(r, b) > 2) {
					if (r > b) r -= 2;
					else b -= 2;
				}
				else break;
				g++;
			}
			if (b == 0) {
				if (Math.max(r, g) > 2) {
					if (r > g) r -= 2;
					else g -= 2;
				}
				else break;
				b++;
			}
			r--;
			g--;
			b--;
			res++;
		}
		System.out.println("" + res);

	}
}
0