結果
問題 |
No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
|
ユーザー |
|
提出日時 | 2023-04-30 16:45:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 151 bytes |
コンパイル時間 | 531 ms |
コンパイル使用メモリ | 82,520 KB |
実行使用メモリ | 53,760 KB |
最終ジャッジ日時 | 2024-11-19 07:21:06 |
合計ジャッジ時間 | 3,280 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
S, T, c = input().split() S = int(S) T = int(T) if c=="<": ans = S<T elif c==">": ans = S>T else: ans = S==T print("YES" if ans else "NO")