結果

問題 No.920 あかあお
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:29:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-06-11 19:54:45
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
41,424 KB
testcase_01 AC 111 ms
41,252 KB
testcase_02 AC 98 ms
41,560 KB
testcase_03 AC 107 ms
41,548 KB
testcase_04 AC 106 ms
39,900 KB
testcase_05 AC 96 ms
41,200 KB
testcase_06 AC 104 ms
41,288 KB
testcase_07 AC 97 ms
41,504 KB
testcase_08 AC 101 ms
41,320 KB
testcase_09 AC 104 ms
41,384 KB
testcase_10 AC 92 ms
41,212 KB
testcase_11 AC 104 ms
41,324 KB
testcase_12 AC 105 ms
41,572 KB
testcase_13 AC 105 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = Integer.parseInt(sc.next());
        int y = Integer.parseInt(sc.next());
        int z = Integer.parseInt(sc.next());

        int res = 0;
        int rest = 0;
        if(x < y) {
            res += x;
            rest = y - x;
        } else {
            res += y;
            rest = x - y;
        }

        if(rest < z) {
            res += (rest + z) / 2;
        }else {
            res += z;
        }

        System.out.println(res);
    }
}
0