結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー deepjuggling
提出日時 2023-06-12 12:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-06-11 14:47:02
合計ジャッジ時間 2,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

s,t,c = input().split()
a = 1
if int(s) == int(t):
    if c == "=":
        a = 0
elif int(s) > int(t):
    if c == ">":
        a = 0
else:
    if c == "<":
        a = 0
if a == 0:
    print("YES")
else:
    print("NO")
0