結果

問題 No.1048 Zero (Advanced)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-05-08 21:35:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2024-07-04 00:07:32
合計ジャッジ時間 1,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

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

LL = L * K
RR = R * K

if LL % M == 0 or RR % M == 0 or RR // M != LL // M:
    print ("Yes")
else:
    print ("No")
0