結果

問題 No.2014 Eggs Hatching
ユーザー viral8viral8
提出日時 2022-10-03 14:16:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 4,812 ms
コンパイル使用メモリ 71,356 KB
実行使用メモリ 56,396 KB
最終ジャッジ日時 2023-08-27 14:03:31
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,888 KB
testcase_01 AC 115 ms
55,848 KB
testcase_02 AC 112 ms
55,756 KB
testcase_03 AC 115 ms
56,012 KB
testcase_04 AC 115 ms
56,196 KB
testcase_05 AC 113 ms
55,920 KB
testcase_06 AC 115 ms
54,132 KB
testcase_07 AC 123 ms
56,044 KB
testcase_08 AC 114 ms
53,852 KB
testcase_09 AC 113 ms
55,820 KB
testcase_10 AC 114 ms
56,016 KB
testcase_11 AC 114 ms
55,812 KB
testcase_12 AC 128 ms
55,864 KB
testcase_13 AC 112 ms
55,824 KB
testcase_14 AC 113 ms
55,960 KB
testcase_15 AC 114 ms
56,016 KB
testcase_16 AC 113 ms
55,920 KB
testcase_17 AC 113 ms
56,396 KB
testcase_18 AC 111 ms
55,844 KB
testcase_19 AC 114 ms
56,120 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