結果

問題 No.920 あかあお
ユーザー 37zigen37zigen
提出日時 2020-01-23 03:37:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 1,931 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-07-18 06:05:09
合計ジャッジ時間 4,246 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,216 KB
testcase_01 AC 114 ms
41,168 KB
testcase_02 AC 117 ms
41,124 KB
testcase_03 AC 116 ms
41,128 KB
testcase_04 AC 112 ms
41,140 KB
testcase_05 AC 103 ms
39,952 KB
testcase_06 AC 116 ms
41,248 KB
testcase_07 AC 112 ms
41,188 KB
testcase_08 AC 102 ms
40,056 KB
testcase_09 AC 119 ms
41,364 KB
testcase_10 AC 117 ms
41,048 KB
testcase_11 AC 118 ms
41,168 KB
testcase_12 AC 104 ms
40,064 KB
testcase_13 AC 114 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static void main(String[] args){
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		int ans=0;
		int[] a=new int[3];
		for(int i=0;i<3;++i)a[i]=sc.nextInt();
		for(int i=0;i<=a[2];++i){
			int X=a[0]+i;
			int Y=a[1]+a[2]-i;
			ans=Math.max(ans,Math.min(X,Y));
		}
		System.out.println(ans);
	}
}
0