結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,912 KB
testcase_01 AC 118 ms
41,236 KB
testcase_02 AC 116 ms
41,068 KB
testcase_03 AC 116 ms
40,944 KB
testcase_04 AC 118 ms
40,952 KB
testcase_05 AC 104 ms
39,872 KB
testcase_06 AC 117 ms
40,808 KB
testcase_07 AC 125 ms
40,904 KB
testcase_08 AC 115 ms
40,928 KB
testcase_09 AC 115 ms
41,016 KB
testcase_10 AC 116 ms
41,068 KB
testcase_11 AC 120 ms
41,060 KB
testcase_12 AC 117 ms
40,688 KB
testcase_13 AC 117 ms
40,896 KB
権限があれば一括ダウンロードができます

ソースコード

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