結果

問題 No.91 赤、緑、青の石
ユーザー tentententen
提出日時 2020-11-17 16:50:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 3,644 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-07-23 08:21:41
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 135 ms
54,084 KB
testcase_07 AC 133 ms
54,192 KB
testcase_08 AC 136 ms
54,396 KB
testcase_09 AC 133 ms
54,492 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 135 ms
54,256 KB
testcase_17 AC 134 ms
54,136 KB
testcase_18 AC 135 ms
54,048 KB
testcase_19 WA -
testcase_20 AC 139 ms
54,180 KB
testcase_21 AC 134 ms
54,216 KB
testcase_22 AC 134 ms
54,272 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 136 ms
54,196 KB
testcase_28 AC 133 ms
53,980 KB
testcase_29 AC 135 ms
54,072 KB
testcase_30 AC 134 ms
54,104 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] arr = new int[3];
        for (int i = 0; i < 3; i++) {
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        int ans = arr[0];
        arr[2] -= arr[0];
        arr[1] -= arr[0];
        arr[0] = 0;
        if (arr[1] > 0) {
            int add = Math.min(arr[1], arr[2] / 3);
            ans += add;
            arr[1] -= add;
            arr[2] -= add * 3;
        }
        ans += arr[2] / 5;
        System.out.println(ans);
    }
}
0