結果

問題 No.91 赤、緑、青の石
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-01-12 04:14:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 1,249 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 56,280 KB
最終ジャッジ日時 2024-06-24 07:02:43
合計ジャッジ時間 7,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,444 KB
testcase_01 AC 135 ms
54,040 KB
testcase_02 AC 131 ms
53,852 KB
testcase_03 AC 133 ms
56,280 KB
testcase_04 AC 134 ms
54,000 KB
testcase_05 AC 134 ms
54,044 KB
testcase_06 AC 135 ms
53,696 KB
testcase_07 AC 133 ms
54,184 KB
testcase_08 AC 136 ms
54,116 KB
testcase_09 AC 134 ms
54,176 KB
testcase_10 AC 134 ms
53,632 KB
testcase_11 AC 134 ms
53,756 KB
testcase_12 AC 137 ms
54,112 KB
testcase_13 AC 136 ms
54,152 KB
testcase_14 AC 137 ms
54,016 KB
testcase_15 AC 134 ms
53,944 KB
testcase_16 AC 134 ms
53,900 KB
testcase_17 AC 134 ms
54,064 KB
testcase_18 AC 138 ms
54,180 KB
testcase_19 AC 135 ms
54,392 KB
testcase_20 AC 136 ms
54,044 KB
testcase_21 AC 137 ms
53,948 KB
testcase_22 AC 136 ms
53,864 KB
testcase_23 AC 133 ms
53,960 KB
testcase_24 AC 134 ms
54,304 KB
testcase_25 AC 134 ms
53,948 KB
testcase_26 AC 134 ms
54,020 KB
testcase_27 AC 136 ms
53,684 KB
testcase_28 AC 135 ms
53,896 KB
testcase_29 AC 135 ms
54,168 KB
testcase_30 AC 137 ms
53,900 KB
testcase_31 AC 136 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int [] rgb = {sc.nextInt(),sc.nextInt(),sc.nextInt()};
        Arrays.sort(rgb);
        int min=rgb[0];
        int A = rgb[1]-rgb[0];
        int B = rgb[2]-rgb[0];
        int ans = min + sim(A,B);
        System.out.println(ans);
    }
    static int sim(int A, int B){
        int r = 0;
        while(A>=3||B>=3){
            if(A>B){
                int tmp=A;
                A=B;
                B=tmp;
            }
            if(B-A>=2){
                int k = (B-A)/2;
                if(k<=A){
                    B=B-3*k;
                    A=A-k;
                    r=r+k;
                }else{
                    r=r+A;
                    B=B-(3*A);
                    A=0;
                }
            }
            if(B-A<=1){
                int k=A/4;
                r=r+k*2;
                A=A-k*4;
                B=B-k*4;
            }
            if(A==0){
                int k=B/5;
                r=r+k;
                break;
            }else if(B>=3){
                A=A-1;
                B=B-3;
                r++;
            }
        }
        return r;
    }
}
0