結果

問題 No.2014 Eggs Hatching
ユーザー マサマサ
提出日時 2022-09-08 20:03:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-05-03 14:38:37
合計ジャッジ時間 5,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,620 KB
testcase_01 AC 106 ms
52,844 KB
testcase_02 AC 119 ms
53,968 KB
testcase_03 AC 111 ms
52,464 KB
testcase_04 AC 120 ms
54,100 KB
testcase_05 AC 121 ms
53,768 KB
testcase_06 AC 128 ms
54,272 KB
testcase_07 AC 120 ms
54,092 KB
testcase_08 AC 109 ms
53,368 KB
testcase_09 AC 118 ms
53,944 KB
testcase_10 AC 118 ms
54,008 KB
testcase_11 AC 113 ms
54,028 KB
testcase_12 AC 119 ms
54,152 KB
testcase_13 AC 117 ms
54,136 KB
testcase_14 AC 119 ms
54,204 KB
testcase_15 AC 120 ms
54,356 KB
testcase_16 AC 118 ms
54,356 KB
testcase_17 AC 127 ms
54,012 KB
testcase_18 AC 118 ms
54,128 KB
testcase_19 AC 119 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a1 = sc.nextInt();
		int a2 = sc.nextInt();
		int a3 = sc.nextInt();
		
		int max = Math.min(a1, a2);
		int result = Math.min(max, a3);
		
		System.out.println(result);
		sc.close();
	}
}
0