結果

問題 No.1048 Zero (Advanced)
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-16 18:30:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 53,500 KB
最終ジャッジ日時 2024-09-20 05:13:25
合計ジャッジ時間 1,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,732 KB
testcase_01 AC 37 ms
53,348 KB
testcase_02 AC 37 ms
51,572 KB
testcase_03 AC 36 ms
52,108 KB
testcase_04 AC 36 ms
52,220 KB
testcase_05 AC 34 ms
52,580 KB
testcase_06 AC 35 ms
53,188 KB
testcase_07 AC 34 ms
51,700 KB
testcase_08 AC 34 ms
52,756 KB
testcase_09 AC 33 ms
52,696 KB
testcase_10 AC 34 ms
52,916 KB
testcase_11 AC 34 ms
52,200 KB
testcase_12 AC 35 ms
52,420 KB
testcase_13 AC 35 ms
52,976 KB
testcase_14 AC 35 ms
53,500 KB
testcase_15 AC 36 ms
53,380 KB
testcase_16 WA -
testcase_17 AC 37 ms
52,164 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

L, R, M, K = map(int, input().split())

nmin = L * K
nmax = R * K

if nmax - nmin + 1 >= M:
    print("Yes")
else:
    mx = nmax % M
    mn = nmin % M
    if mn >= mx:
        print("Yes")
    else:
        print("No")
0