結果

問題 No.920 あかあお
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:25:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 75,368 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-06-11 19:51:34
合計ジャッジ時間 4,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,916 KB
testcase_01 AC 118 ms
54,032 KB
testcase_02 AC 102 ms
53,052 KB
testcase_03 AC 119 ms
54,304 KB
testcase_04 AC 118 ms
53,900 KB
testcase_05 AC 122 ms
54,140 KB
testcase_06 WA -
testcase_07 AC 120 ms
54,208 KB
testcase_08 AC 117 ms
53,848 KB
testcase_09 AC 111 ms
53,724 KB
testcase_10 AC 118 ms
54,028 KB
testcase_11 AC 121 ms
53,968 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
        if(x < y) {
            res += x;
            res += (y - x + z) / 2;
        } else {
            res += y;
            res += (x - y + z) / 2;
        }

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