結果
| 問題 |
No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
|
| コンテスト | |
| ユーザー |
max4588
|
| 提出日時 | 2021-07-10 22:10:11 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 2,000 ms |
| コード長 | 233 bytes |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-07-02 02:52:25 |
| 合計ジャッジ時間 | 2,193 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
ソースコード
inp = input()
inp = inp.split()
s = int(inp[0])
t = int(inp[1])
c = str(inp[2])
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)
max4588