結果

問題 No.1829 Möbius Tunnelling
コンテスト
ユーザー Tomoyarn
提出日時 2022-02-16 17:18:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-06-29 07:17:11
合計ジャッジ時間 1,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder No.1829 Möbius Tunnelling
N = int(input())
a, b, c = map(int, input().split())

if a < b <= c or c <= b < a or b <= c < a:
    print('Yes')
else:
    print('No')
0