結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー sysnote8main
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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