結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,408 KB
testcase_01 AC 132 ms
41,388 KB
testcase_02 AC 127 ms
41,108 KB
testcase_03 AC 127 ms
41,232 KB
testcase_04 WA -
testcase_05 AC 120 ms
40,112 KB
testcase_06 AC 134 ms
41,284 KB
testcase_07 AC 132 ms
41,544 KB
testcase_08 AC 119 ms
40,236 KB
testcase_09 AC 133 ms
41,652 KB
testcase_10 AC 133 ms
41,432 KB
testcase_11 AC 132 ms
41,344 KB
testcase_12 AC 132 ms
41,388 KB
testcase_13 AC 131 ms
41,696 KB
testcase_14 AC 132 ms
41,444 KB
testcase_15 AC 131 ms
41,556 KB
testcase_16 WA -
testcase_17 AC 133 ms
41,260 KB
testcase_18 AC 134 ms
41,420 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 && m <= r * (k-1) || l <= m && m <= r * k || k == 0 ? "Yes" : "No");
    }
}
0