結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー マサマサ
提出日時 2022-09-09 21:54:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-11-25 21:51:03
合計ジャッジ時間 5,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,824 KB
testcase_01 AC 108 ms
52,852 KB
testcase_02 AC 108 ms
50,704 KB
testcase_03 AC 114 ms
51,856 KB
testcase_04 AC 122 ms
54,012 KB
testcase_05 AC 125 ms
54,024 KB
testcase_06 AC 118 ms
52,080 KB
testcase_07 AC 109 ms
50,988 KB
testcase_08 AC 114 ms
52,000 KB
testcase_09 AC 106 ms
51,204 KB
testcase_10 AC 112 ms
52,000 KB
testcase_11 AC 100 ms
50,548 KB
testcase_12 AC 109 ms
52,032 KB
testcase_13 AC 97 ms
50,136 KB
testcase_14 AC 110 ms
51,856 KB
testcase_15 AC 105 ms
51,444 KB
testcase_16 AC 105 ms
50,860 KB
testcase_17 AC 108 ms
51,824 KB
testcase_18 AC 103 ms
50,980 KB
testcase_19 AC 110 ms
51,548 KB
testcase_20 AC 112 ms
51,756 KB
testcase_21 AC 101 ms
50,556 KB
testcase_22 AC 108 ms
51,916 KB
testcase_23 AC 112 ms
51,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int i = sc.nextInt();
		int j = sc.nextInt();
		int k = sc.nextInt();
		
		if (i <= j && i <= k) {
			System.out.println("Yes");
		}else {
			System.out.println("No");
		}
		
		sc.close();
	}
}
0