結果

問題 No.2014 Eggs Hatching
ユーザー マサマサ
提出日時 2022-09-08 20:03:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 7,210 ms
コンパイル使用メモリ 73,568 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-11-24 15:33:52
合計ジャッジ時間 8,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,116 KB
testcase_01 AC 127 ms
54,184 KB
testcase_02 AC 125 ms
53,804 KB
testcase_03 AC 129 ms
53,984 KB
testcase_04 AC 136 ms
53,788 KB
testcase_05 AC 124 ms
53,896 KB
testcase_06 AC 123 ms
53,820 KB
testcase_07 AC 115 ms
52,928 KB
testcase_08 AC 124 ms
53,816 KB
testcase_09 AC 128 ms
53,876 KB
testcase_10 AC 137 ms
54,052 KB
testcase_11 AC 125 ms
54,040 KB
testcase_12 AC 129 ms
53,796 KB
testcase_13 AC 136 ms
53,956 KB
testcase_14 AC 137 ms
54,052 KB
testcase_15 AC 123 ms
54,128 KB
testcase_16 AC 110 ms
52,824 KB
testcase_17 AC 130 ms
53,828 KB
testcase_18 AC 125 ms
53,836 KB
testcase_19 AC 126 ms
53,808 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