結果

問題 No.1048 Zero (Advanced)
ユーザー yuly3yuly3
提出日時 2020-05-10 19:20:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,352 KB
最終ジャッジ日時 2024-07-08 01:52:00
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,732 KB
testcase_01 AC 33 ms
52,612 KB
testcase_02 AC 35 ms
53,252 KB
testcase_03 AC 32 ms
52,800 KB
testcase_04 AC 33 ms
52,444 KB
testcase_05 AC 33 ms
52,180 KB
testcase_06 AC 34 ms
53,352 KB
testcase_07 AC 32 ms
52,168 KB
testcase_08 AC 33 ms
52,024 KB
testcase_09 AC 34 ms
51,968 KB
testcase_10 AC 34 ms
52,420 KB
testcase_11 AC 32 ms
52,456 KB
testcase_12 AC 32 ms
52,184 KB
testcase_13 AC 39 ms
52,296 KB
testcase_14 AC 35 ms
53,336 KB
testcase_15 AC 34 ms
51,740 KB
testcase_16 AC 34 ms
52,432 KB
testcase_17 AC 33 ms
52,152 KB
testcase_18 AC 33 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    L, R, M, K = map(int, rl().split())
    
    if (L * K - 1) // M != R * K // M:
        print('Yes')
    else:
        print('No')


if __name__ == '__main__':
    solve()
0