結果

問題 No.1048 Zero (Advanced)
ユーザー neterukunneterukun
提出日時 2020-05-08 23:30:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 71,608 KB
最終ジャッジ日時 2023-09-17 03:31:59
合計ジャッジ時間 2,635 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,472 KB
testcase_01 AC 71 ms
71,268 KB
testcase_02 WA -
testcase_03 AC 67 ms
71,452 KB
testcase_04 AC 68 ms
71,384 KB
testcase_05 AC 69 ms
71,420 KB
testcase_06 AC 70 ms
71,560 KB
testcase_07 AC 71 ms
71,404 KB
testcase_08 AC 70 ms
71,256 KB
testcase_09 AC 71 ms
71,524 KB
testcase_10 AC 71 ms
71,220 KB
testcase_11 AC 70 ms
71,200 KB
testcase_12 AC 70 ms
71,076 KB
testcase_13 AC 71 ms
71,552 KB
testcase_14 AC 70 ms
71,288 KB
testcase_15 AC 69 ms
71,492 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, m, k = map(int, input().split())

l = l * k
r = r * k

div_l = l // m
div_r = r // m
if div_l != div_r:
    print("Yes")
else:
    print("No")
0