結果

問題 No.1107 三善アクセント
ユーザー RuteRute
提出日時 2020-05-26 20:54:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 48,812 KB
最終ジャッジ日時 2024-10-13 02:59:14
合計ジャッジ時間 5,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
48,812 KB
testcase_01 AC 118 ms
41,432 KB
testcase_02 AC 109 ms
39,856 KB
testcase_03 AC 113 ms
40,536 KB
testcase_04 AC 120 ms
41,272 KB
testcase_05 AC 122 ms
41,132 KB
testcase_06 AC 107 ms
39,520 KB
testcase_07 AC 126 ms
41,688 KB
testcase_08 AC 122 ms
41,344 KB
testcase_09 AC 105 ms
39,716 KB
testcase_10 AC 105 ms
40,080 KB
testcase_11 AC 120 ms
41,136 KB
testcase_12 AC 119 ms
41,508 KB
testcase_13 AC 108 ms
40,056 KB
testcase_14 AC 120 ms
41,356 KB
testcase_15 AC 120 ms
41,220 KB
testcase_16 AC 110 ms
40,212 KB
testcase_17 AC 118 ms
41,220 KB
testcase_18 AC 119 ms
41,312 KB
testcase_19 AC 121 ms
41,112 KB
testcase_20 AC 118 ms
41,400 KB
testcase_21 AC 116 ms
41,044 KB
testcase_22 AC 120 ms
41,324 KB
testcase_23 AC 122 ms
41,376 KB
testcase_24 AC 108 ms
40,072 KB
testcase_25 AC 120 ms
41,244 KB
testcase_26 AC 121 ms
41,052 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