結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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