結果

問題 No.1048 Zero (Advanced)
ユーザー roarisroaris
提出日時 2020-05-08 22:22:01
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 87,376 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2023-09-17 03:05:08
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
71,752 KB
testcase_01 AC 96 ms
71,908 KB
testcase_02 AC 96 ms
71,748 KB
testcase_03 AC 97 ms
71,888 KB
testcase_04 AC 96 ms
71,732 KB
testcase_05 AC 97 ms
71,612 KB
testcase_06 AC 95 ms
71,728 KB
testcase_07 AC 96 ms
71,768 KB
testcase_08 AC 95 ms
71,936 KB
testcase_09 AC 94 ms
71,888 KB
testcase_10 AC 94 ms
71,728 KB
testcase_11 AC 93 ms
71,464 KB
testcase_12 AC 94 ms
71,628 KB
testcase_13 AC 95 ms
71,880 KB
testcase_14 AC 94 ms
71,624 KB
testcase_15 AC 93 ms
71,912 KB
testcase_16 AC 93 ms
71,732 KB
testcase_17 AC 94 ms
71,848 KB
testcase_18 AC 94 ms
71,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

if (L*K-1)//M*M+M<=R*K:
    print('Yes')
else:
    print('No')
0