結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー HAGI_TARO
提出日時 2021-08-16 19:37:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-10-09 16:54:28
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

s,t,c = map(str,input().split())
if c == ">":
    print("YNeos"[not(s>t)::2])
elif c == "<":
    print("YNeos"[not(s<t)::2])
else:
    print("YNeos"[not(s==t)::2])
0