結果

問題 No.1048 Zero (Advanced)
ユーザー ddnne
提出日時 2020-05-08 22:20:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 232 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-04 00:53:11
合計ジャッジ時間 1,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 2
other AC * 7 RE * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:5: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
  if math.floor(R * K / M) - math.floor(L * K /M) >= 1 or R == 0 or L == 0 (R == L and (R * K) % M == 0) or K == 0:

ソースコード

diff #

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

import math
# if L*K <= M <= R*K:
if math.floor(R * K / M) - math.floor(L * K /M) >= 1 or R == 0 or L == 0 (R == L and (R * K) % M == 0) or K == 0:
    print('Yes')
else:
    print('No')
0