結果

問題 No.2014 Eggs Hatching
ユーザー viral8viral8
提出日時 2022-10-03 14:16:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 2,539 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-06-08 09:38:57
合計ジャッジ時間 4,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,024 KB
testcase_01 AC 104 ms
41,196 KB
testcase_02 AC 104 ms
41,088 KB
testcase_03 AC 97 ms
39,836 KB
testcase_04 AC 108 ms
41,028 KB
testcase_05 AC 105 ms
41,160 KB
testcase_06 AC 107 ms
41,120 KB
testcase_07 AC 96 ms
39,836 KB
testcase_08 AC 105 ms
40,796 KB
testcase_09 AC 105 ms
41,288 KB
testcase_10 AC 92 ms
39,828 KB
testcase_11 AC 97 ms
40,072 KB
testcase_12 AC 96 ms
39,888 KB
testcase_13 AC 107 ms
41,120 KB
testcase_14 AC 112 ms
40,808 KB
testcase_15 AC 110 ms
40,940 KB
testcase_16 AC 96 ms
39,996 KB
testcase_17 AC 107 ms
41,080 KB
testcase_18 AC 105 ms
40,872 KB
testcase_19 AC 106 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int ans = sc.nextInt();
        ans = Math.min(ans,sc.nextInt());
        ans = Math.min(ans,sc.nextInt());
        System.out.println(ans);
    }
}
0