結果

問題 No.91 赤、緑、青の石
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-07 10:43:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 5,000 ms
コード長 1,102 bytes
コンパイル時間 3,517 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 41,940 KB
最終ジャッジ日時 2024-06-24 06:47:57
合計ジャッジ時間 10,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
41,452 KB
testcase_01 AC 182 ms
40,696 KB
testcase_02 AC 179 ms
41,568 KB
testcase_03 AC 197 ms
41,556 KB
testcase_04 AC 172 ms
41,528 KB
testcase_05 AC 205 ms
41,544 KB
testcase_06 AC 182 ms
41,600 KB
testcase_07 AC 130 ms
41,372 KB
testcase_08 AC 135 ms
41,340 KB
testcase_09 AC 137 ms
41,424 KB
testcase_10 AC 135 ms
41,560 KB
testcase_11 AC 173 ms
41,552 KB
testcase_12 AC 200 ms
41,404 KB
testcase_13 AC 225 ms
41,940 KB
testcase_14 AC 195 ms
41,304 KB
testcase_15 AC 217 ms
41,392 KB
testcase_16 AC 133 ms
41,196 KB
testcase_17 AC 130 ms
41,276 KB
testcase_18 AC 132 ms
41,308 KB
testcase_19 AC 134 ms
41,308 KB
testcase_20 AC 139 ms
41,304 KB
testcase_21 AC 157 ms
41,416 KB
testcase_22 AC 148 ms
41,268 KB
testcase_23 AC 152 ms
41,472 KB
testcase_24 AC 150 ms
41,532 KB
testcase_25 AC 252 ms
41,600 KB
testcase_26 AC 219 ms
40,872 KB
testcase_27 AC 135 ms
41,404 KB
testcase_28 AC 169 ms
41,432 KB
testcase_29 AC 184 ms
41,664 KB
testcase_30 AC 181 ms
40,416 KB
testcase_31 AC 239 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.91 赤、緑、青の石

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No91 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int[] c = new int[3];
        for (int i=0; i<3; i++) c[i] = in.nextInt();
        sort(c);
        int ans = c[0];
        for (int i=2; i>=0; i--) c[i] -= c[0]; 

        while (c[2] >= 3) {
            c[2] -= 2;
            c[0] += 1;
            sort(c);
            if (c[0] > 0 && c[1] > 0) {
                ans += c[0];
                for (int i=2; i>=0; i--) c[i] -= c[0];
            }
        }

        out.println(ans);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0