結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 17:19:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-05-03 15:17:07
合計ジャッジ時間 6,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,928 KB
testcase_01 AC 117 ms
53,828 KB
testcase_02 AC 118 ms
53,840 KB
testcase_03 AC 114 ms
53,712 KB
testcase_04 AC 100 ms
52,460 KB
testcase_05 WA -
testcase_06 AC 97 ms
52,444 KB
testcase_07 AC 111 ms
54,140 KB
testcase_08 AC 118 ms
53,944 KB
testcase_09 AC 102 ms
53,028 KB
testcase_10 AC 101 ms
53,040 KB
testcase_11 AC 106 ms
53,456 KB
testcase_12 WA -
testcase_13 AC 107 ms
53,192 KB
testcase_14 AC 111 ms
53,828 KB
testcase_15 AC 120 ms
53,760 KB
testcase_16 AC 115 ms
54,020 KB
testcase_17 AC 110 ms
54,020 KB
testcase_18 AC 111 ms
54,108 KB
testcase_19 AC 122 ms
54,248 KB
testcase_20 AC 120 ms
54,104 KB
testcase_21 AC 120 ms
53,896 KB
testcase_22 WA -
testcase_23 AC 122 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class SimpleComparator {
    public static boolean CheckInt(int a, int b, int c) {
        return a <= b && b <= 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