結果
問題 |
No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
|
ユーザー |
|
提出日時 | 2021-06-11 21:23:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 666 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-14 22:08:15 |
合計ジャッジ時間 | 2,684 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 35 |
ソースコード
def main(): S, T, c = input().split() S = int(input()) T = int(input()) if c == "<": print("YES" if S < T else "NO") elif c == ">": print("YES" if S > T else "NO") else: print("YES" if S == T else "NO") if __name__ == "__main__": main()