結果
問題 | No.1543 [Cherry 2nd Tune A] これがプログラミングなのね |
ユーザー |
![]() |
提出日時 | 2021-08-16 19:38:17 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 163 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,536 KB |
実行使用メモリ | 53,752 KB |
最終ジャッジ日時 | 2024-10-09 16:55:05 |
合計ジャッジ時間 | 2,604 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
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])