結果

問題 No.3354 有理数の大小比較
コンテスト
ユーザー nikoro256
提出日時 2025-11-14 21:35:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2025-11-14 21:35:44
合計ジャッジ時間 3,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

N1,D1 = map(int,input().split())
N2,D2 = map(int,input().split())
if N1*D2 == N2*D1:
    print("=")
elif N2*D2 > N2*D1:
    print(">")
else:
    print("<")
0