結果
| 問題 | No.1829 Möbius Tunnelling |
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2022-02-04 21:27:06 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 2,000 ms |
| + 975µs | |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 573 ms |
| コンパイル使用メモリ | 95,988 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-07-25 11:15:21 |
| 合計ジャッジ時間 | 3,352 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 |
ソースコード
N = int(input())
A, B, C = map(int, input().split())
if (B > A and C > A) or (B < A and C < A):
print("Yes")
else:
print("No")
rlangevin