結果

問題 No.91 赤、緑、青の石
ユーザー ぴろずぴろず
提出日時 2014-12-07 19:22:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-06-11 16:07:57
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
52,912 KB
testcase_01 AC 144 ms
53,856 KB
testcase_02 AC 139 ms
54,312 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 136 ms
54,148 KB
testcase_07 AC 123 ms
53,172 KB
testcase_08 AC 131 ms
54,144 KB
testcase_09 WA -
testcase_10 AC 137 ms
53,064 KB
testcase_11 AC 116 ms
53,140 KB
testcase_12 AC 128 ms
53,960 KB
testcase_13 AC 134 ms
54,240 KB
testcase_14 AC 129 ms
53,988 KB
testcase_15 AC 129 ms
54,240 KB
testcase_16 AC 134 ms
54,176 KB
testcase_17 AC 133 ms
54,156 KB
testcase_18 AC 132 ms
53,952 KB
testcase_19 AC 131 ms
54,140 KB
testcase_20 AC 137 ms
54,104 KB
testcase_21 AC 137 ms
54,252 KB
testcase_22 AC 123 ms
52,956 KB
testcase_23 AC 135 ms
54,376 KB
testcase_24 AC 140 ms
54,180 KB
testcase_25 AC 130 ms
53,856 KB
testcase_26 WA -
testcase_27 AC 102 ms
52,948 KB
testcase_28 AC 124 ms
54,140 KB
testcase_29 AC 131 ms
54,212 KB
testcase_30 AC 120 ms
53,228 KB
testcase_31 AC 126 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no091;

import java.util.Scanner;

public class Main {
	public static final int MAX = 10000000;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int r = sc.nextInt();
		int g = sc.nextInt();
		int b = sc.nextInt();
		for(int i=MAX;i>=0;i--) {
			int sum = r + g + b;
			int need = 0;
			need += r < i ? r + (i-r) * 2 : i;
			need += g < i ? g + (i-g) * 2 : i;
			need += b < i ? b + (i-b) * 2 : i;
			//System.out.println(i + "," + need);
			if (sum >= need) {
				System.out.println(i);
				break;
			}
		}
	}

}
0