結果

問題 No.1048 Zero (Advanced)
ユーザー ooaiuooaiu
提出日時 2024-12-16 12:33:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 244,940 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-16 12:33:24
合計ジャッジ時間 3,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 WA -
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 WA -
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

void solve() {
    int L, R, M, K;
    cin >> L >> R >> M >> K;
    if (K == 0) {
        cout << "Yes\n";
        return;
    }
    if (R - L + 1 >= M) {
        cout << "Yes\n";
    } else {
        int lr = L % M;
        int rr = R % M;
        int64_t mn = min(lr, rr), mx = max(lr, rr);
        int64_t hi = mx * K, lo = mn * K;
        int64_t cnt = hi / M - max(0L, lo - 1) / M;
        cout << (cnt ? "Yes\n" : "No\n");
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0