結果

問題 No.1120 Strange Teacher
ユーザー maspy
提出日時 2020-07-08 22:56:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 308 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-10-11 20:53:30
合計ジャッジ時間 2,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

# 嘘解法。
# 計算誤差を無視しているため、WA となるべきである。

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

a, b, c, d = map(int, read().split())

LHS = a / b
RHS = c / d

print('Yes' if LHS < RHS else 'No')
0