結果

問題 No.2014 Eggs Hatching
ユーザー nakamura nakamuranakamura nakamura
提出日時 2022-09-20 09:32:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-01 16:51:26
合計ジャッジ時間 5,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,076 KB
testcase_01 AC 132 ms
41,084 KB
testcase_02 AC 131 ms
41,176 KB
testcase_03 WA -
testcase_04 AC 140 ms
41,216 KB
testcase_05 AC 129 ms
41,352 KB
testcase_06 AC 132 ms
41,412 KB
testcase_07 AC 130 ms
41,156 KB
testcase_08 AC 130 ms
41,468 KB
testcase_09 AC 129 ms
41,056 KB
testcase_10 AC 131 ms
40,984 KB
testcase_11 AC 117 ms
39,864 KB
testcase_12 AC 128 ms
41,232 KB
testcase_13 AC 127 ms
41,308 KB
testcase_14 AC 126 ms
41,612 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 131 ms
41,472 KB
testcase_18 AC 130 ms
41,368 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int n2 = sc.nextInt();
			int n3 = sc.nextInt();

   if (n <= n2 || n <= n3){
			System.out.println(n);
   }else if(n2 <= n3){
			System.out.println(n2);
   }else {
			System.out.println(n3);
   }

	}
}
0