結果
| 問題 | No.1543 [Cherry 2nd Tune A] これがプログラミングなのね |
| コンテスト | |
| ユーザー |
mesame3993
|
| 提出日時 | 2021-10-09 16:37:03 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 74 ms / 2,000 ms |
| + 906µs | |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 271 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-25 20:44:53 |
| 合計ジャッジ時間 | 4,552 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
ソースコード
s, t, c = input().split()
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')
mesame3993