結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー max4588
提出日時 2021-07-10 21:57:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-02 02:52:23
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

inp = str(input())
s = inp[0:1]
t = inp[2:3]
c = inp[4:5]

ans='NO'
if c=='<':
    if s < t:
        ans='YES'

if c=='>':
    if s > t:
        ans='YES'

if c=='=':
    if s==t:
        ans='YES'
        
print (ans)
0