結果

問題 No.1048 Zero (Advanced)
ユーザー neterukunneterukun
提出日時 2020-05-08 22:43:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,308 KB
最終ジャッジ日時 2024-07-04 01:02:42
合計ジャッジ時間 1,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,756 KB
testcase_01 AC 38 ms
52,520 KB
testcase_02 AC 37 ms
52,188 KB
testcase_03 AC 34 ms
53,184 KB
testcase_04 AC 36 ms
52,364 KB
testcase_05 AC 35 ms
52,264 KB
testcase_06 AC 35 ms
52,712 KB
testcase_07 AC 35 ms
52,692 KB
testcase_08 AC 36 ms
52,152 KB
testcase_09 AC 35 ms
52,024 KB
testcase_10 AC 37 ms
52,264 KB
testcase_11 AC 35 ms
53,308 KB
testcase_12 AC 38 ms
52,560 KB
testcase_13 AC 35 ms
52,356 KB
testcase_14 AC 35 ms
52,548 KB
testcase_15 AC 36 ms
51,960 KB
testcase_16 AC 34 ms
52,748 KB
testcase_17 AC 34 ms
52,092 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, m, k = map(int, input().split())

if l == 0:
    print("Yes")
    exit()

if k == 0:
    print("Yes")
    exit()

if m == 1:
    print("Yes")
    exit()

if l == r:
    if (l * k) % m == 0:
        print("Yes")
    else:
        print("No")
    exit()

if l % m == r % m:
    print("Yes")
    
mod_l = l % m
mod_r = r % m

if mod_l > mod_r:
    print("Yes")
    exit()

width = mod_r - mod_l
sum_w = 1 + width * k

if sum_w >= m:
    print("Yes")
    exit()

l = (mod_l * k) % m
if l + (sum_w - 1) >= m:
    print("Yes")
else:
    print("No")
0