結果

問題 No.920 あかあお
ユーザー masa_ahemasa_ahe
提出日時 2020-03-12 14:40:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 54,056 KB
最終ジャッジ日時 2024-11-18 08:12:51
合計ジャッジ時間 3,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
52,696 KB
testcase_01 AC 94 ms
52,876 KB
testcase_02 AC 103 ms
52,964 KB
testcase_03 AC 109 ms
53,948 KB
testcase_04 AC 94 ms
53,044 KB
testcase_05 AC 101 ms
53,860 KB
testcase_06 AC 94 ms
53,080 KB
testcase_07 AC 104 ms
54,024 KB
testcase_08 AC 96 ms
52,888 KB
testcase_09 AC 102 ms
54,056 KB
testcase_10 AC 104 ms
53,980 KB
testcase_11 AC 102 ms
53,724 KB
testcase_12 AC 103 ms
53,936 KB
testcase_13 AC 100 ms
52,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int x=sc.nextInt();
		int y=sc.nextInt();
		int z=sc.nextInt();
		int a=Math.max(x,y);
		int b=x+y-a;
		if(a-b>z){
			System.out.println(b+z);
		}else{
			System.out.println(a+(z-a+b)/2);
		}
	}
}
0