結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー 👑 Kazun
提出日時 2021-04-17 00:53:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-12-14 19:39:10
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

S,T,c=input().split()

S=int(S); T=int(T)
F=0

if (c=="<") and (S<T):
    F=1

if (c==">") and (S>T):
    F=1

if (c=="=") and (S==T):
    F=1

if F==1:
    print("YES")
else:
    print("NO")
0