結果

問題 No.920 あかあお
ユーザー fal_rndfal_rnd
提出日時 2019-11-21 23:59:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-10-11 02:26:53
合計ジャッジ時間 4,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,232 KB
testcase_01 AC 130 ms
41,528 KB
testcase_02 AC 129 ms
41,500 KB
testcase_03 AC 125 ms
39,976 KB
testcase_04 AC 126 ms
41,468 KB
testcase_05 AC 111 ms
41,256 KB
testcase_06 AC 110 ms
41,364 KB
testcase_07 AC 132 ms
41,328 KB
testcase_08 AC 133 ms
41,436 KB
testcase_09 AC 120 ms
40,020 KB
testcase_10 AC 133 ms
41,256 KB
testcase_11 AC 119 ms
39,932 KB
testcase_12 AC 128 ms
41,292 KB
testcase_13 AC 120 ms
40,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String[] $) {
		Scanner s=new Scanner(System.in);
		int x=s.nextInt(),y=s.nextInt(),z=s.nextInt();
		int r=Math.min(x,y),q=Math.max(x,y)-r;
		System.out.println(r+(q<=z?(q+z)/2:z));
	}
}
0