結果

問題 No.91 赤、緑、青の石
ユーザー kou6839kou6839
提出日時 2014-12-08 22:38:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 919 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-06-24 06:46:05
合計ジャッジ時間 7,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,556 KB
testcase_01 AC 131 ms
41,504 KB
testcase_02 AC 131 ms
41,232 KB
testcase_03 AC 130 ms
41,308 KB
testcase_04 AC 129 ms
54,244 KB
testcase_05 AC 130 ms
54,220 KB
testcase_06 AC 131 ms
54,188 KB
testcase_07 AC 132 ms
54,120 KB
testcase_08 AC 131 ms
53,916 KB
testcase_09 AC 128 ms
53,860 KB
testcase_10 AC 132 ms
54,012 KB
testcase_11 AC 133 ms
53,816 KB
testcase_12 AC 128 ms
54,344 KB
testcase_13 AC 127 ms
53,996 KB
testcase_14 AC 128 ms
54,060 KB
testcase_15 AC 132 ms
54,172 KB
testcase_16 AC 129 ms
54,360 KB
testcase_17 AC 130 ms
53,992 KB
testcase_18 AC 134 ms
54,016 KB
testcase_19 AC 133 ms
54,168 KB
testcase_20 AC 131 ms
53,748 KB
testcase_21 AC 130 ms
53,828 KB
testcase_22 AC 131 ms
53,996 KB
testcase_23 AC 134 ms
53,880 KB
testcase_24 AC 129 ms
54,008 KB
testcase_25 AC 129 ms
54,088 KB
testcase_26 AC 130 ms
53,948 KB
testcase_27 AC 130 ms
41,428 KB
testcase_28 AC 128 ms
41,212 KB
testcase_29 AC 129 ms
41,116 KB
testcase_30 AC 131 ms
41,308 KB
testcase_31 AC 128 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int r = sc.nextInt();
        int g = sc.nextInt();
        int b = sc.nextInt();
        int min = Math.min(r, Math.min(g,b));
        int max = Math.max(r, Math.max(g,b));
        while(min<=max){
        	int temp=(min+max)/2;
        	int count=0;
        	if(temp>r){
        		count-=(temp-r);
        	}else{
        		count+=(r-temp)/2;
        	}
        	if(temp>g){
        		count-=(temp-g);
        	}else{
        		count+=(g-temp)/2;
        	}
        	if(temp>b){
        		count-=(temp-b);
        	}else{
        		count+=(b-temp)/2;
        	}
        	if(count>=0){
        		min=temp+1;
        	}else{
        		max=temp-1;
        	}
        }
        System.out.println(Math.min(min,max));
    }
}
0