結果

問題 No.1829 Möbius Tunnelling
ユーザー 👑 obakyan
提出日時 2022-02-06 01:21:22
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 13:42:35
合計ジャッジ時間 832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

n = io.read("*n")
a, b, c = io.read("*n", "*n", "*n")
if a == c then
  print("No")
elseif a < c then
  print(b < a and "No" or "Yes")
else
  print(a < b and "No" or "Yes")
end
0