結果

問題 No.1048 Zero (Advanced)
ユーザー NoviNovi
提出日時 2020-05-11 00:56:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 10,644 KB
実行使用メモリ 8,260 KB
最終ジャッジ日時 2023-09-22 22:49:31
合計ジャッジ時間 1,651 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,132 KB
testcase_01 AC 15 ms
7,872 KB
testcase_02 WA -
testcase_03 AC 15 ms
8,228 KB
testcase_04 AC 15 ms
7,808 KB
testcase_05 AC 15 ms
8,172 KB
testcase_06 AC 16 ms
7,916 KB
testcase_07 AC 15 ms
8,084 KB
testcase_08 AC 15 ms
7,888 KB
testcase_09 AC 15 ms
8,120 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 WA -
testcase_16 AC 16 ms
8,076 KB
testcase_17 RE -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,m,k=map(int,input().split())
tl=l%m
tr=r%m
if tl>tr:
    print("Yes")
    exit()

if tl<=m%tr<=tr:
    print("Yes")
    exit()
print("No")
0