結果
| 問題 | No.1829 Möbius Tunnelling |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-14 10:36:33 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 325 ms |
| コンパイル使用メモリ | 85,432 KB |
| 実行使用メモリ | 53,872 KB |
| 最終ジャッジ日時 | 2026-04-08 09:10:27 |
| 合計ジャッジ時間 | 2,839 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 10 |
ソースコード
n = int(input())
a,b,c = map(int,input().split())
if a < b and b < c:
print('Yes')
elif a < c and c < b:
print('Yes')
else:
print('No')