結果

問題 No.1107 三善アクセント
ユーザー 拓哉拓哉
提出日時 2020-07-21 22:14:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-06-10 02:35:33
合計ジャッジ時間 5,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,608 KB
testcase_01 AC 101 ms
40,024 KB
testcase_02 AC 96 ms
39,680 KB
testcase_03 AC 109 ms
41,040 KB
testcase_04 AC 108 ms
40,868 KB
testcase_05 AC 97 ms
39,956 KB
testcase_06 AC 97 ms
40,196 KB
testcase_07 AC 103 ms
41,148 KB
testcase_08 AC 105 ms
40,816 KB
testcase_09 AC 107 ms
41,156 KB
testcase_10 AC 113 ms
41,092 KB
testcase_11 AC 105 ms
40,872 KB
testcase_12 AC 105 ms
41,404 KB
testcase_13 AC 97 ms
40,084 KB
testcase_14 AC 106 ms
40,056 KB
testcase_15 AC 92 ms
40,116 KB
testcase_16 AC 100 ms
40,416 KB
testcase_17 AC 96 ms
40,336 KB
testcase_18 AC 106 ms
41,212 KB
testcase_19 AC 107 ms
41,076 KB
testcase_20 AC 97 ms
40,372 KB
testcase_21 AC 100 ms
40,268 KB
testcase_22 AC 110 ms
40,900 KB
testcase_23 AC 110 ms
41,228 KB
testcase_24 AC 106 ms
40,940 KB
testcase_25 AC 107 ms
40,908 KB
testcase_26 AC 109 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


class Main {
    public static void main(String[] args) {
   		Scanner sc=new Scanner(System.in);
   		int num=0;
   		if(sc.nextInt()<sc.nextInt())num++;
   		if(sc.nextInt()>sc.nextInt())num++;
   		if(num>1)System.out.println("YES");
   		else System.out.println("NO");
   		sc.close();
   		return;
    }
}
0