結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー raven7959
提出日時 2021-08-18 10:46:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-10-11 12:47:21
合計ジャッジ時間 2,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

S,T,c=input().split()
S,T=int(S),int(T)
if c=="<":
    if S<T:
        print("Yes")
    else:
        print("No")
elif c==">":
    if S>T:
        print("Yes")
    else:
        print("No")
else:
    if S==T:
        print("Yes")
    else:
        print("No")
0