結果

問題 No.920 あかあお
ユーザー tentententen
提出日時 2020-11-12 18:30:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-07-22 19:42:02
合計ジャッジ時間 4,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,132 KB
testcase_01 AC 130 ms
41,164 KB
testcase_02 AC 130 ms
40,980 KB
testcase_03 AC 138 ms
41,336 KB
testcase_04 AC 134 ms
41,108 KB
testcase_05 AC 145 ms
41,144 KB
testcase_06 AC 133 ms
41,180 KB
testcase_07 AC 130 ms
40,804 KB
testcase_08 AC 133 ms
41,312 KB
testcase_09 AC 131 ms
40,828 KB
testcase_10 AC 139 ms
41,176 KB
testcase_11 AC 135 ms
41,128 KB
testcase_12 AC 131 ms
40,964 KB
testcase_13 AC 131 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        int z = sc.nextInt();
        int ans = 0;
        if (x >= y) {
            ans += y;
            x -= y;
            ans += Math.min(x, z);
            z -= x;
            if (z > 0) {
                ans += z / 2;
            }
        } else {
            ans += x;
            y -= x;
            ans += Math.min(y, z);
            z -= y;
            if (z > 0) {
                ans += z / 2;
            }
        }
        System.out.println(ans);
    }
}
0