結果
| 問題 | No.1829 Möbius Tunnelling |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-04 21:28:11 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 147 bytes |
| 記録 | |
| コンパイル時間 | 122 ms |
| コンパイル使用メモリ | 85,468 KB |
| 実行使用メモリ | 54,072 KB |
| 最終ジャッジ日時 | 2026-03-04 12:51:20 |
| 合計ジャッジ時間 | 1,416 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 17 WA * 7 |
ソースコード
N = int(input())
a,b,c = map(int,input().split())
if a < b and c > a:
print('Yes')
elif b <a and c >= b:
print('Yes')
else:
print('No')