結果

問題 No.1829 Möbius Tunnelling
コンテスト
ユーザー gr1msl3y
提出日時 2022-02-19 00:44:23
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 95 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 275 ms
コンパイル使用メモリ 85,284 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2026-03-18 21:08:29
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N=int(input())
a,b,c=map(int,input().split())
print('Yes' if a<b<c or (b<a and c<a) else 'No')
0