結果

問題 No.91 赤、緑、青の石
ユーザー samplelpmassamplelpmas
提出日時 2017-05-04 02:56:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 2,677 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-06-24 07:07:20
合計ジャッジ時間 9,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
41,436 KB
testcase_01 AC 209 ms
41,448 KB
testcase_02 AC 190 ms
41,468 KB
testcase_03 AC 200 ms
41,172 KB
testcase_04 AC 184 ms
41,180 KB
testcase_05 AC 207 ms
41,460 KB
testcase_06 AC 180 ms
41,552 KB
testcase_07 AC 149 ms
41,280 KB
testcase_08 AC 146 ms
41,504 KB
testcase_09 AC 147 ms
41,412 KB
testcase_10 AC 151 ms
41,248 KB
testcase_11 AC 182 ms
41,512 KB
testcase_12 AC 190 ms
41,532 KB
testcase_13 AC 206 ms
41,428 KB
testcase_14 AC 181 ms
41,440 KB
testcase_15 AC 200 ms
41,388 KB
testcase_16 AC 116 ms
40,188 KB
testcase_17 AC 131 ms
41,264 KB
testcase_18 AC 128 ms
41,164 KB
testcase_19 AC 130 ms
41,436 KB
testcase_20 AC 129 ms
41,044 KB
testcase_21 AC 130 ms
41,236 KB
testcase_22 AC 131 ms
41,388 KB
testcase_23 AC 129 ms
41,308 KB
testcase_24 AC 129 ms
41,168 KB
testcase_25 AC 217 ms
41,304 KB
testcase_26 AC 212 ms
41,472 KB
testcase_27 AC 132 ms
41,480 KB
testcase_28 AC 163 ms
41,308 KB
testcase_29 AC 169 ms
41,256 KB
testcase_30 AC 176 ms
41,864 KB
testcase_31 AC 208 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int[] num = new int[3];

        for (int i = 0; i < 3; i++) {
            num[i] = sc.nextInt();
        }

        while (true) {

            Arrays.sort(num);

            if (num[0] + 3 > num[2]) {
                break;
            }

            num[0] += 1;
            num[2] -= 2;

        }

        System.out.println(num[0]);

    }

}
0