結果

問題 No.920 あかあお
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-01 22:01:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-11-21 19:46:21
合計ジャッジ時間 4,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,904 KB
testcase_01 AC 106 ms
40,160 KB
testcase_02 AC 121 ms
41,012 KB
testcase_03 AC 123 ms
41,108 KB
testcase_04 AC 117 ms
40,748 KB
testcase_05 AC 125 ms
41,312 KB
testcase_06 WA -
testcase_07 AC 115 ms
40,892 KB
testcase_08 AC 117 ms
40,936 KB
testcase_09 AC 117 ms
40,804 KB
testcase_10 AC 112 ms
40,356 KB
testcase_11 AC 118 ms
41,288 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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());
        
        //処理
        z -= Math.abs(x - y);
        int ans = Math.max(x, y) + z / 2;
        
        //出力
        System.out.println(ans);
    }
}
0