結果

問題 No.1048 Zero (Advanced)
ユーザー silviasetitechsilviasetitech
提出日時 2020-05-10 09:21:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-07 04:44:19
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,080 KB
testcase_01 AC 119 ms
41,044 KB
testcase_02 AC 99 ms
41,244 KB
testcase_03 AC 117 ms
41,116 KB
testcase_04 AC 112 ms
41,080 KB
testcase_05 AC 108 ms
41,100 KB
testcase_06 AC 100 ms
41,136 KB
testcase_07 AC 107 ms
41,412 KB
testcase_08 AC 110 ms
40,992 KB
testcase_09 AC 106 ms
41,236 KB
testcase_10 AC 108 ms
40,940 KB
testcase_11 AC 106 ms
41,516 KB
testcase_12 AC 112 ms
41,136 KB
testcase_13 AC 108 ms
41,428 KB
testcase_14 AC 109 ms
41,176 KB
testcase_15 AC 104 ms
41,188 KB
testcase_16 AC 109 ms
41,244 KB
testcase_17 AC 96 ms
41,004 KB
testcase_18 AC 109 ms
40,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author silviase
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        No1048ZeroAdvanced solver = new No1048ZeroAdvanced();
        solver.solve(1, in, out);
        out.close();
    }

    static class No1048ZeroAdvanced {
        public void solve(int testNumber, Scanner in, PrintWriter out) {

            long l = in.nextLong();
            long r = in.nextLong();
            long m = in.nextLong();
            long k = in.nextLong();

            out.println(k == 0 ? "Yes" : Math.floorDiv(k * r, m) > Math.floorDiv(k * l - 1, m) ? "Yes" : "No");

        }

    }
}

0