結果

問題 No.1048 Zero (Advanced)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-05-08 21:35:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 1,718 ms
コンパイル使用メモリ 86,768 KB
実行使用メモリ 71,600 KB
最終ジャッジ日時 2023-09-17 02:03:18
合計ジャッジ時間 3,960 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
71,368 KB
testcase_01 AC 59 ms
71,248 KB
testcase_02 AC 64 ms
71,424 KB
testcase_03 AC 58 ms
71,220 KB
testcase_04 AC 59 ms
71,264 KB
testcase_05 AC 58 ms
71,520 KB
testcase_06 AC 57 ms
71,248 KB
testcase_07 AC 58 ms
71,428 KB
testcase_08 AC 58 ms
71,400 KB
testcase_09 AC 56 ms
71,248 KB
testcase_10 AC 57 ms
71,188 KB
testcase_11 AC 57 ms
71,084 KB
testcase_12 AC 58 ms
71,312 KB
testcase_13 AC 57 ms
71,312 KB
testcase_14 AC 58 ms
71,600 KB
testcase_15 AC 57 ms
71,400 KB
testcase_16 AC 57 ms
71,104 KB
testcase_17 AC 56 ms
71,436 KB
testcase_18 AC 57 ms
71,136 KB
権限があれば一括ダウンロードができます

ソースコード

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