結果

問題 No.920 あかあお
ユーザー k_6101k_6101
提出日時 2019-12-04 00:08:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,401 bytes
コンパイル時間 2,820 ms
コンパイル使用メモリ 83,232 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-05-05 23:55:13
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,056 KB
testcase_01 AC 108 ms
41,216 KB
testcase_02 AC 106 ms
41,316 KB
testcase_03 AC 98 ms
40,136 KB
testcase_04 AC 97 ms
40,020 KB
testcase_05 AC 96 ms
40,276 KB
testcase_06 AC 95 ms
40,344 KB
testcase_07 AC 94 ms
39,824 KB
testcase_08 AC 107 ms
41,244 KB
testcase_09 AC 101 ms
40,640 KB
testcase_10 AC 95 ms
40,148 KB
testcase_11 AC 97 ms
39,944 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    public void solve() {
        int X = Integer.parseInt(sc.next());
        int Y = Integer.parseInt(sc.next());
        int Z = Integer.parseInt(sc.next());
        int sa = Math.abs(X-Y);
        if(sa == 0)			out.println(X + Z/2);
        else if(sa <= Z)	out.println(Math.max(X, Y) + (Z - sa)/2);
        else 				out.println(Math.min(X, Y));
    }
    // ==================================================================
}
class PP{
	public int key, val;
	public PP(int key, int val) {
		this.key = key;
		this.val = val;
	}
	public int getKey() {
		return key;
	}
	public int getVal() {
		return val;
	}
}
0