結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-06-11 23:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-12-15 03:16:51
合計ジャッジ時間 2,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import eq, gt, lt

S, T, c = input().split()
pred = {'<': lt, '>': gt, '=': eq}
print('YES' if pred[c](int(S), int(T)) else 'NO')
0