結果
| 問題 |
No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
|
| コンテスト | |
| ユーザー |
yasuyuki0321
|
| 提出日時 | 2021-06-26 20:25:18 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 266 bytes |
| コンパイル時間 | 80 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-06-25 09:21:03 |
| 合計ジャッジ時間 | 2,175 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 WA * 22 |
ソースコード
s, t, c = input().split()
if c == "<":
if s < t:
print("YES")
else:
print("N0")
elif c == ">":
if s > t:
print("YES")
else:
print("N0")
elif c == "=":
if s == t:
print("YES")
else:
print("N0")
yasuyuki0321