結果

問題 No.1107 三善アクセント
ユーザー RuteRute
提出日時 2020-05-26 20:54:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 80,384 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-04-21 04:34:03
合計ジャッジ時間 8,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
53,888 KB
testcase_01 AC 147 ms
54,088 KB
testcase_02 AC 148 ms
53,912 KB
testcase_03 AC 143 ms
53,968 KB
testcase_04 AC 140 ms
52,692 KB
testcase_05 AC 154 ms
53,860 KB
testcase_06 AC 155 ms
54,016 KB
testcase_07 AC 149 ms
54,116 KB
testcase_08 AC 148 ms
53,876 KB
testcase_09 AC 147 ms
53,940 KB
testcase_10 AC 143 ms
53,904 KB
testcase_11 AC 144 ms
53,972 KB
testcase_12 AC 141 ms
53,880 KB
testcase_13 AC 147 ms
54,144 KB
testcase_14 AC 144 ms
53,936 KB
testcase_15 AC 149 ms
54,248 KB
testcase_16 AC 147 ms
53,884 KB
testcase_17 AC 142 ms
53,836 KB
testcase_18 AC 146 ms
54,044 KB
testcase_19 AC 147 ms
53,904 KB
testcase_20 AC 142 ms
54,236 KB
testcase_21 AC 140 ms
54,092 KB
testcase_22 AC 151 ms
53,968 KB
testcase_23 AC 143 ms
53,928 KB
testcase_24 AC 140 ms
53,888 KB
testcase_25 AC 144 ms
54,072 KB
testcase_26 AC 147 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
  public static void main(String[] args)
  {
    Scanner scan =new Scanner (System.in);
    int a =  scan.nextInt();
    int b =  scan.nextInt();
    int c =  scan.nextInt();
    int d =  scan.nextInt();
	if (a < b && c > d) {
		System.out.println("YES");
	}else {
		System.out.println("NO");
	}
  }
}
0