結果

問題 No.1107 三善アクセント
ユーザー tentententen
提出日時 2020-11-09 20:12:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 71,192 KB
実行使用メモリ 56,640 KB
最終ジャッジ日時 2023-09-29 22:14:32
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
56,292 KB
testcase_01 AC 108 ms
55,916 KB
testcase_02 AC 109 ms
55,708 KB
testcase_03 AC 111 ms
55,968 KB
testcase_04 AC 109 ms
55,544 KB
testcase_05 AC 111 ms
55,768 KB
testcase_06 AC 106 ms
55,828 KB
testcase_07 AC 111 ms
55,784 KB
testcase_08 AC 109 ms
56,056 KB
testcase_09 AC 109 ms
55,876 KB
testcase_10 AC 108 ms
55,824 KB
testcase_11 AC 115 ms
55,516 KB
testcase_12 AC 111 ms
56,088 KB
testcase_13 AC 110 ms
56,244 KB
testcase_14 AC 112 ms
56,640 KB
testcase_15 AC 110 ms
55,992 KB
testcase_16 AC 110 ms
56,124 KB
testcase_17 AC 105 ms
56,292 KB
testcase_18 AC 111 ms
56,536 KB
testcase_19 AC 110 ms
56,184 KB
testcase_20 AC 113 ms
55,896 KB
testcase_21 AC 109 ms
56,044 KB
testcase_22 AC 109 ms
55,860 KB
testcase_23 AC 117 ms
56,352 KB
testcase_24 AC 111 ms
56,084 KB
testcase_25 AC 115 ms
56,332 KB
testcase_26 AC 114 ms
56,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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