結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 17:20:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-11-24 16:34:08
合計ジャッジ時間 7,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,068 KB
testcase_01 AC 115 ms
52,852 KB
testcase_02 AC 126 ms
54,128 KB
testcase_03 AC 128 ms
53,968 KB
testcase_04 AC 128 ms
53,960 KB
testcase_05 AC 127 ms
54,208 KB
testcase_06 AC 129 ms
54,092 KB
testcase_07 AC 128 ms
54,256 KB
testcase_08 AC 129 ms
54,324 KB
testcase_09 AC 126 ms
53,956 KB
testcase_10 AC 129 ms
54,000 KB
testcase_11 AC 118 ms
53,104 KB
testcase_12 AC 128 ms
54,024 KB
testcase_13 AC 128 ms
54,248 KB
testcase_14 AC 112 ms
52,984 KB
testcase_15 AC 128 ms
54,184 KB
testcase_16 AC 130 ms
54,004 KB
testcase_17 AC 123 ms
54,180 KB
testcase_18 AC 115 ms
52,912 KB
testcase_19 AC 124 ms
53,868 KB
testcase_20 AC 127 ms
54,024 KB
testcase_21 AC 123 ms
54,060 KB
testcase_22 AC 127 ms
53,928 KB
testcase_23 AC 111 ms
53,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class SimpleComparator {
    public static boolean CheckInt(int a, int b, int c) {
        return a <= b && a <= c;
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        if(CheckInt(sc.nextInt(),sc.nextInt(),sc.nextInt())) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0