結果

問題 No.1048 Zero (Advanced)
ユーザー joybeeeejoybeeee
提出日時 2020-05-12 17:00:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-09-13 15:15:20
合計ジャッジ時間 5,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,048 KB
testcase_01 AC 135 ms
54,340 KB
testcase_02 AC 133 ms
53,864 KB
testcase_03 AC 134 ms
53,936 KB
testcase_04 AC 135 ms
53,708 KB
testcase_05 AC 132 ms
53,772 KB
testcase_06 AC 134 ms
54,016 KB
testcase_07 AC 133 ms
54,036 KB
testcase_08 AC 130 ms
41,260 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 132 ms
41,232 KB
testcase_12 AC 133 ms
41,432 KB
testcase_13 AC 130 ms
41,132 KB
testcase_14 WA -
testcase_15 AC 131 ms
41,456 KB
testcase_16 WA -
testcase_17 AC 134 ms
41,472 KB
testcase_18 AC 131 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String args[]) throws Exception {
        Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        long r = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();

        System.out.println(l <= m && m <= r * k || k == 0 ? "Yes" : "No");
    }
}
0