結果

問題 No.1048 Zero (Advanced)
ユーザー ekaraageekaraage
提出日時 2020-05-09 20:13:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 198,664 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 09:05:15
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
constexpr long long MOD = 1000000007;
int main(){
    ll l, r, m, k;
    ll mini = 1e12;
    ll maxi = 0;
    cin >> l >> r >> m >> k;
    if (k == 0 && l == 0) cout << "Yes" << endl;
    else if(k==0)
        cout << "No" << endl;
    else {
        if ((k * l-1) / m != k * r / m) cout << "Yes" << endl;
        else
            cout << "No" << endl;
    }
}
0