結果

問題 No.1048 Zero (Advanced)
ユーザー joybeeeejoybeeee
提出日時 2020-05-12 16:49:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 2,412 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-09-13 15:03:21
合計ジャッジ時間 5,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,392 KB
testcase_01 AC 133 ms
41,296 KB
testcase_02 AC 132 ms
41,600 KB
testcase_03 AC 132 ms
41,688 KB
testcase_04 AC 134 ms
41,260 KB
testcase_05 AC 131 ms
41,308 KB
testcase_06 AC 133 ms
41,264 KB
testcase_07 AC 134 ms
41,376 KB
testcase_08 AC 120 ms
41,588 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 135 ms
41,240 KB
testcase_12 WA -
testcase_13 AC 127 ms
41,156 KB
testcase_14 WA -
testcase_15 AC 132 ms
41,076 KB
testcase_16 WA -
testcase_17 AC 136 ms
41,432 KB
testcase_18 AC 133 ms
41,516 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();
        int r = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();

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